@charset "UTF-8";
/* --------------------------------------------------------
-----------------------------------------------------------
index
-----------------------------------------------------------
----------------------------------------------------------- */
#index .Content-main {
  padding-top: 0;
  padding-bottom: 0;
}

/*
-----------------------------------------------------------
btn-wrap
----------------------------------------------------------- */
#works .works-block .btn-wrap,
#news .news-block .btn-wrap{
  text-align: right;
}

#works .works-block .btn-wrap a,
#news .news-block .btn-wrap a{
  text-decoration: none;
  display: block;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease; 
}

#works .works-block .btn-wrap a:hover,
#news .news-block .btn-wrap a:hover{
  transform: translateX(10px);
}

/*
-----------------------------------------------------------
[#message] message-block
----------------------------------------------------------- */
.Content-block#message {
  padding-bottom: 45px;
}

#message .message-block.top-main-content .message-wrap .message-content{
  display: flex;
  gap: 55px;
}

#message .message-block.top-main-content .message-wrap .text-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

#message .message-block.top-main-content .message-wrap .text-wrap .title-wrap{
  font-size: 34px;
  line-height: 1.4;
}

#message .message-block.top-main-content .message-wrap .text-wrap .txt-boby.HTMLeditor{
  font-size: 16px;
  margin-top: 100px;
}

#message .message-block.top-main-content .message-wrap .img-wrap{
  width: 645px;
  display: flex;
  position: relative;
  height: 560px;
}

#message .message-block.top-main-content .message-wrap .img-wrap img:first-child{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#message .message-block.top-main-content .message-wrap .img-wrap img:last-child{
  position: absolute;
  bottom: 0;
  left: 0;
}

/*
-----------------------------------------------------------
[#services] services-block
----------------------------------------------------------- */
#services .services-block .services-wrap ul.services-list {
  display: flex;
  grid-gap: 30px;
}

#services .services-block .services-wrap ul.services-list li {
  width: calc((100%) / 3);
}

#services .services-block .services-wrap ul.services-list li a {
  display: block;
  text-decoration: none;
  position: relative;
}

#services .services-block .services-wrap ul.services-list li .img-wrap {
  position: relative;
  overflow: hidden;
}

#services .services-block .services-wrap ul.services-list li .img-wrap img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

#services .services-block .services-wrap ul.services-list li a:hover .img-wrap img {
  transform: scale(1.05);
}

#services .services-block .services-wrap .Title-small {
  text-align: center;
}

#services .services-block .services-wrap .text-wrap .detail{
  font-size: 14px;
  margin-top: 15px;
}

/*
-----------------------------------------------------------
[#btn] btn-block
----------------------------------------------------------- */
.Content-block#btn {
  padding-bottom: 45px;
}

#btn .btn-block .btn-group ul{
  display: flex;
}

#btn .btn-block .btn-group ul li {
  width: calc((100%) / 3);
  position: relative;
}

#btn .btn-block .btn-group ul li .img-wrap {
  position: relative;
  overflow: hidden;
}

#btn .btn-block .btn-group ul li .img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #999999;
  opacity: 0.6;
}

#btn .btn-block .btn-group ul li .img-wrap img {
  position: relative;
  transition: transform 0.4s ease;
}

#btn .btn-block .btn-group ul li h4{
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/*--------#btn hover時--------*/
#btn .btn-block .btn-group ul li:hover .img-wrap::after {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#btn .btn-block .btn-group ul li:hover .img-wrap img {
  transform: scale(1.05);
}

#btn .btn-block .btn-group ul li:hover h4 {
  color: #003d7c;
  background-color: #fff;
  padding: 0 10px;
}
/*--------#btn hover時--------*/

/*
-----------------------------------------------------------
[#works] works-block
----------------------------------------------------------- */

#works .works-block .works-wrap ul.works-list {
  display: flex;
  grid-gap: 20px;
  margin-bottom: 50px;
}

#works .works-block .works-wrap ul.works-list li {
  width: calc((100%) / 4);
}

#works .works-block .works-wrap ul.works-list li a {
  display: block;
  text-decoration: none;
  position: relative;
}

#works .works-block .works-wrap ul.works-list li .img-wrap {
  position: relative;
  overflow: hidden;
}

#works .works-block .works-wrap ul.works-list li .img-wrap img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

#works .works-block .works-wrap ul.works-list li a:hover .img-wrap img {
  transform: scale(1.05);
}

#works .works-block .works-wrap .text-wrap .Title-small {
  margin-top: 10px;
}

#works .works-block .works-wrap .text-wrap .info{
  font-size: 16px;
}

#works .works-block .works-wrap .text-wrap .detail{
  margin-top: 10px;
}

/*
-----------------------------------------------------------
[#news] news-block
----------------------------------------------------------- */
.Content-block#news {
  padding-bottom: 190px;
}

#news .content-inner {
  width: 970px;
  margin: 0 auto;
}

#news .news-block .news-wrap{
  width: 770px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 35px;
}

#news .news-block .news-wrap .wb-blog-list {
  position: relative;
  transition: border-color 0.3s ease;
}

#news .news-block .news-wrap .wb-blog-list::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #a7a7a7;
  transform: scaleX(1);
  transform-origin: left;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#news .news-block .news-wrap .wb-blog-list:hover::after {
  background-color: #003d7c;
  transform: scaleX(0);
  animation: underline-slide 0.4s forwards;
}

@keyframes underline-slide {
  0% {
    transform: scaleX(0);
    background-color: #003d7c;
  }
  100% {
    transform: scaleX(1);
    background-color: #003d7c;
  }
}

#news .news-block .news-wrap .wb-blog-list:hover .wb-blog-title a {
  color: #003d7c;
}

#news .news-block .news-wrap .wb-blog-list + .wb-blog-list {
  margin-top: 20px;
}

#news .news-block .news-wrap .wb-blog-title {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: baseline;
  flex-direction: row;
  width: 600px;
  margin: 0 auto;
  padding: 0px 0 15px;
  grid-gap: 30px;
}

#news .news-block .news-wrap .wb-blog-title span {
  color: #2d65a5;
  font-size: 14px;
}

#news .news-block .news-wrap .wb-blog-title a {
  text-decoration: none;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#news .news-block .news-wrap .btn-wrap{
  margin-top: 20px;
}

/*
-----------------------------------------------------------
[#top-content6] img-block
----------------------------------------------------------- */
#top-content6 {
  padding-bottom: 20px;
}

#index .img-block {
  position: relative;
}

#index .img-block .img-wrap {
  max-width: 70%;
  margin-right: auto;
}

#index .img-block .img-wrap img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

/*
-----------------------------------------------------------
[#top-content7] faq-block
----------------------------------------------------------- */
#top-content7 .Title-block01 {
  margin-bottom: 40px;
}

#top-content7 .content-inner {
  max-width: 960px;
}

#index .faq-block .content-title img {
  max-width: 95px;
}

#index .faq-block .content-wrap {
  margin-bottom: 75px;
}

#index .JS-accordion-body-faq {
  display: none;
}

#index .faq-block .faq + .faq {
  margin-top: 2px;
}

#index .faq-block .faq .accordion-title {
  position: relative;
  border: none;
  background: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  padding: 18px 95px 18px 65px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
}

#index .faq-block .faq .accordion-title:before {
  content: "";
  background: url(/img/index/arrow_bottom.svg);
  background-size: 12px auto;
  background-repeat: no-repeat;
  position: absolute;
  width: 12px;
  height: 7px;
  top: 32px;
  right: 77px;
  transition: all .3s;
}

#index .faq-block .faq .accordion-title.MOD-open:before {
  transform: rotate(180deg);
}

#index .faq-block .faq:nth-of-type(odd) .accordion-title,
#index .faq-block .faq:nth-of-type(odd) .accordion-body {
  background: #f6f6f6;
}

#index .faq-block .faq .accordion-title img {
  height: 25px;
}

#index .faq-block .faq .accordion-title span.text {
  font-size: 15px;
}

#index .faq-block .faq .accordion-body {
  padding: 20px 40px 25px 100px;
  font-size: 14px;
  line-height: 1.9;
}

#index .faq-block .faq .wb-faq-list-answer {
  position: relative;
}

#index .faq-block .faq .wb-faq-list-answer::before {
  content: 'A';
  color: #f56f02;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -38px;
  line-height: 1;
  font-size: 27px;
  width: 25px;
  text-align: center;
  text-decoration: none;
}

#index .faq-block .bottom-wrap ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#index .faq-block .bottom-wrap ul li {
  width: calc((100% - 40px) / 3);
}

#index .faq-block .bottom-wrap ul li a {
  display: block;
}

#index .faq-block .bottom-wrap ul li a:hover {
  opacity: 0.8;
}

/*
-----------------------------------------------------------
[#top-content8] company-block
----------------------------------------------------------- */
#top-content8 .Title-block01 {
  margin-bottom: 30px;
}

#index .company-block .company-wrap {
  display: flex;
  justify-content: space-between;
  gap: 75px;
}

#index .company-block .company-wrap .company .title {
  width: 100px;
}

#index .company-block .company-wrap .company .comment {
  flex: 1;
}

#index .company-block .company-wrap .company {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 40px;
  font-size: 15px;
  padding: 15px 20px 15px;
  border-bottom: 1px solid #555;
}

#index .company-block .company-wrap .left-wrap {
  flex: 1;
}

#index .company-block .company-wrap .right-wrap {
  width: 514px;
}

#index .company-block .company-wrap .right-wrap .img-wrap img {
  border-radius: 12px;
}

/*
-----------------------------------------------------------
 スクロールに応じて表示 scroll_up ｜下から上へ出現
----------------------------------------------------------- */
.scroll_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
}

.timing02 {
  transition-delay: .2s;
}

.timing03 {
  transition-delay: .4s;
}

.timing04 {
  transition-delay: .6s;
}

.timing05 {
  transition-delay: .8s;
}
