@charset "UTF-8";

/* ========BASIC======== */
html {
    overflow-y:scroll;
      font-feature-settings: "palt"

}

body,
p,
ul,
li,
div,
h1 {
  margin: 0;
  padding: 0;
}

body {
    margin:0;
    padding:0;
    line-height:1.6;
    letter-spacing:1px;
    font-family:"Hiragino Kaku Gothic Pro",HiraKakuPro-W3,"ヒラギノ角ゴ Pro W3","メイリオ", Meiryo,"ＭＳ Ｐゴシック",verdana,sans-serif;
    font-size:14px;
    color:#2a2a2a;
      background-color: #FBF9F6;

}
a {
    color: unset;
    text-decoration:none;
}
a:hover {
    color:#999;
    text-decoration:none;
}

ul,
ol {
  list-style: none;
}

main {
  width: 100%;
  margin-top: 84px; /* ヘッダー固定高分下げる */
  padding-bottom: 50px;
  background-color: #fff;
}
@media screen and (max-width: 768px){
  main {
  margin-top: 65px;  /* ヘッダー固定高分下げる */
}
}

.sp {
  display: none;
}
@media screen and (max-width: 768px){
.pc {
  display: none;
}
.sp {
  display: block;
}
}

/* ========フッター========= */
footer {
  width: 100%;
  height: auto;
  background-color: #47a0da;
}
#footMenu a:hover {
    color: #FFEC50;

}
#footMenu ul {
    padding:20px 0 0;
    text-align:center;
    border-top:1px solid #ccc;
    color: #FFF;
    font-size: 90%;
}
#footMenu li {
    display:inline;
    margin:0 0 0 20px;
}
.copyright {
  width: 100%;
  margin: auto;
  color: #fff;
    font-size: 80%;
    padding: 1em 0 1.2em;
}
.copyright-text {
  text-align: center;
}
@media screen and (max-width: 768px){
  #footMenu ul {
    padding:0;
    text-align:center;
    border-top:1px solid #ccc;
    color: #FFF;
    font-size: 100%;
}
#footMenu li {
    display: flex;
    justify-content: space-around;
    border-bottom: solid 0.75px #eee;
    margin: 0;
    padding: 5%;

}
  .copyright {
  width: 100%;
  margin: auto;
  color: #fff;
}
}

/* ========ナビゲーションとハンバーガーここから======== */
.header {
  position: fixed;
  top: 0px;
  z-index: 3000;
  width: 100%;
  height: 84px;
  background: #47a0da;/*WINSロゴ色*/
}
.header h1 {
  text-align: center;
}
.header h1 img {
  height: 80px;
}
.hamburger-morph {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
 
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  border-radius: 5px;
}

.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}

.hamburger-morph__line {
  fill: none;
  stroke: #fff;/*3本線の色*/
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #47a0da;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
.nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
.nav-morph.active .nav-morph__item:nth-child(5) { transition-delay: 0.7s; }
.nav-morph.active .nav-morph__item:nth-child(6) { transition-delay: 0.8s; }


.nav-morph__link {
  position: relative;
  display: inline-block;
  padding: 0px 20px;
  font-size: 21px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  margin-bottom: 30px;
}

.nav-morph__text,
.nav-morph__hover {
  display: block;
  transition: transform 0.3s ease;
}

.nav-morph__hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: translateY(0%);
  color: #fff;
    color: #FFEC50;

  font-size: 14px;
}

.nav-morph__link:hover .nav-morph__text {
  transform: translateY(-200%);
      color: #fff;

}

.nav-morph__link:hover .nav-morph__hover {
  transform: translateY(-200%);
}

@media screen and (max-width: 768px){
  .header { 
    height: 65px;
  }
.header h1 img {
  height: 65px;
}
.hamburger-morph {
  top: 8px;
}
}

/* ========ナビゲーションとハンバーガーここまで======== */

/* ========メインビジュアルここから======== */
/**ふわっと**/
.slideBox {
  height: 600px;
  overflow: hidden;
  position: relative;
}

/* imgのみ */
.item1 {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 30s 0s infinite;
  animation: anime 30s 0s infinite;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.item1:nth-of-type(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

/* ========メインビジュアルここまで======== */

/* ========メインコンテンツここから======== */
/**ニュースバー ここから**/
.newsbar {
  overflow:hidden;
    white-space:nowrap;
    z-index: 1;
    width: 100%;
    height: 50px;
    background: #479fdabe;/*WINSロゴ色+透過*/    
}
.newsbar p:hover {
      color: #FFEC50;
}
.newsbar p {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 3em;
    text-align: center;
    }
@media screen and (max-width: 768px){ 
  .newsbar p {
    animation: flowing 18s linear infinite;/*スマホサイズになると文字が流れる*/
  }
}
@keyframes flowing {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
  }
/**ニュースバー ここまで**/

.main-content-wide {
width: 100%;
height: 100px;
}
.main-content-wide .content-title h2 {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px){
  .main-content-wide {
height: 50px;
}
.main-content-wide .content-title h2 {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 0.2em;
}
}


.main-content {
    width: 60%;
    margin: auto;
    margin: 100px auto;
}
@media screen and (max-width: 1200px){
  .main-content {
    width: 80%;
    margin: auto;
    margin-top: 30px;
}
}
@media screen and (max-width: 768px){
  .main-content {
    width: 100%;
    margin: 50px auto;
}
}
.main-content-first {
  margin-top: 50px;
}
@media screen and (max-width: 768px){
  .main-content-first {
  margin-top: 30px;
}
}


.backWHT-area {
    background-color: #fff;

}


.content-title {
  width: 100%;
  text-align: center;
  padding: 1em 0 0;
}
.content-title h2 {
  font-weight: 600;
}
.content-title h2 span {
  font-weight: normal;
  font-size: 70%;
  padding: 0 0.8em;
}


.BT-more {
    width: 200px;
    font-size: 110%;
    color: #fff;
    background: #479fdabe;/*WINSロゴ色+透過*/
    border-radius: 3px;
    margin: 50px auto;
}
.BT-backto {
    width: 200px;
    font-size: 110%;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    margin: 50px auto;
}
.BT-more a:hover{
  color: #FFEC50;
}
.BT-backto a:hover {
  color: #999;
}
.BT-more p, .BT-backto p {
  text-align: center;
  padding: 1em;
}
@media screen and (max-width:780px){
  .BT-more, .BT-backto {
    width: 80%;
    margin: auto;
    font-size: 18px;
  }
}


.BN-area {
  width: 20%;
  margin: 50px auto;
}
@media screen and (max-width:780px){
  .BN-area {
  width: 80%;
  margin: 50px auto;
}
}
/* ========infomation areaここから========= */
.info-wrap li {
  margin-bottom: 10px;
}
.info-block {
  display: flex;
}
.info-block-img {
  width: 30%;
  margin-left: 0;
}
.info-block-img img {
  width: 100%;
}
.info-block-txt {
  padding: 1em 2em;
}
.info-block-txt h4 {
  color: #999;
  font-weight: normal;
  text-decoration: underline;
  text-underline-offset: .3em;
  margin-top: -10px;
}
@media screen and (max-width: 768px){
  .info-wrap li {
  margin-bottom: 20px;
}
  .info-block {
  display: block;
}
.info-block-img {
  width: 80%;
  margin: auto;
}
.info-block-txt {
  width: 80%;
  margin: auto;
  text-align: left;
  padding: 0;
}
}

/* ========WINS doここから========= */
.WINSdo-area {
 background-color: rgba(229, 208, 159, 0.222);
 padding-bottom: 5px;
}
.WINSdo-area .content-title {
  
}
.WINSdo-area .content-text {
  width: 80%;
  margin: auto;
  text-align: left;
}
/* indexに設置する実績に関するCSSここから */
.works_onlytext {
  margin-bottom: 50px;
}
.works_onlytext ul {
  width: 80%;
  margin: auto;
  text-align: left;
  padding: 2em 4em;
}
.works_onlytext ul li:first-child {
  font-size: 130%;
  padding: 0.3em 1em;
  border-bottom: dotted 3px #479fdabe;
}
.works_onlytext ul li {
  padding: 0.8em 0;
}
@media screen and (max-width: 768px){
  .works_onlytext {
  margin-bottom: 20px;
}
.works_onlytext ul {
 width: 90%;
 padding: 2em 1.5em;
}
  .works_onlytext ul li:first-child {
  font-size:18px;
  padding: 0.3em 0;
}
  .works_onlytext ul li {
  padding: 0.5em 0;
  font-size: 14px;
}
}

.main-content .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);/*横に並べる数*/
  grid-template-rows: repeat(1, 1fr);/*縦に並べる数 グリッドが増えたら数増やしていく*/
  gap: 40px;
  margin: 5%;
}

@media screen and (max-width: 768px){
 .main-content .grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);/*横に並べる数*/
  grid-template-rows: repeat(3, 1fr);/*縦に並べる数 グリッドが増えたら数増やしていく*/
  gap: 40px;
  margin: 5%;
}
.content-text p {
  font-size: 16px;
  letter-spacing: 2;
}

}
/* indexに設置する実績に関するCSSここまで */

/* ========カルーセルここから========= */
.carousel-wrap {
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  overflow-x: auto;
  margin: 0 auto;
  padding: 30px 0;
  width: 100%;
}

.carousel-item {
  scroll-snap-align: center;
  display: inline-block;
  margin: 0 20px;
  width: 40%;
  white-space: normal;
  background-color: #f4f4f4;
    background-color: #234084;
  overflow: hidden;
}
@media screen and (max-width:568px){
  .carousel-item {
    width: 80%;
  }
}

 .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
}

 .carousel-item p {
  margin: 0;
  padding: 15px;
  color: #fff;
}

@media screen and (max-width:568px){
   .carousel-item p {
    padding: 20px;
    font-size: 0.875rem;
  }
}
/* ========カルーセルここまで========= */

/* ========テーブルここから========= */
.table_BLline {
border-collapse: collapse;
width: 100%;
max-width: 700px;
}
.table_BLline th, .table_BLline td {
padding: 1em;
}
.table_BLline th {
border-right: 1px dotted #479fdabe;
font-weight: normal;
text-align: left;
width: 30%;
min-width: 4em;
}
.table_BLline td {
  padding-left: 5em;
}
@media screen and (max-width: 768px){ 
  .table_BLline td {
  padding-left: 3em;
}
}
@media screen and (max-width: 768px){
.table_BLline {
  width: 100%;
  margin: auto;
  font-size: 110%;
}
.table_BLline th {
width: 40%;
padding-left: 0;
}
  .table_BLline td {
  padding-left: 1em;
  padding-right: 0;
}
}
/* ========テーブルここまで========= */

/* ========子ページに関するCSSここから======== */

.main-content-chpage {
  width: 100%;
  margin: auto;
  padding: 2em 0;
  max-width: 768px;
}
.main-content-chpage h3 {
  color: #999;
  font-weight: 100;
}
.Uline h3 {
  position: relative;
}
.Uline h3::before {
	content: "";
	width: 100%;	/* 線の長さ */
	height: 1px;	/* 線の太さ */
	bottom: -8px;	/* 線の縦の開始位置 */
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	background: #999;
}
.content-title-chpage {
  margin-bottom: 20px;
}
.content-title-chpage-en {
     font-family: "Cormorant", serif;
     font-size: 3rem;
     line-height: 1.2;
}
.content-title-chpage-jp {
  font-size: 1rem;
}

.main-content-chpage-block {
 width: 80%;
 margin: auto;
 padding: 20px 0;
}
.main-content-chpage-block h3 {
  line-height: 1;
}
.main-content-chpage-block h3 span {
  padding-left: 1em;
}
.main-content-chpage-block-link {
}
.main-content-chpage-block .BN-area {
 width: 40%;
 margin: auto;
 padding: 20px 0;
}

@media screen and (max-width: 768px){
  .main-content-chpage, .main-content-chpage-block .BN-area {
  width: 70%;
  margin: auto;
}
}
@media screen and (max-width: 768px){
.main-content-chpage, .main-content-chpage-block .BN-area {
  width: 100%;
}
.content-title-chpage {
  text-align: center;
}
.main-content-chpage-block {
 width: 90%;
}
}

/* 企業情報に関するCSSここから */

.main-content-chpage-rinen {
     font-family: "Cormorant", serif;
     font-size: 230%;
}
.main-content-chpage-center {
  padding: 2em 0;
}
.main-content-chpage-block ul li {
  margin-bottom: 2em;
  padding-left: 1em;
  text-indent: -1em;
}
/* 企業情報に関するCSSここまで */

/* 実績に関するCSSここから */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);/*横に並べる数*/
  grid-template-rows: repeat(2, 1fr);/*縦に並べる数 グリッドが増えたら数増やしていく*/
  gap: 40px;
  margin: 5%;
}
.case-works-list>a .case-works-box>img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(3px 3px 2px #47a0da);
        filter: drop-shadow(3px 3px 3px #aaa);

}
.case-works-list>a .case-works-box>.asreet-name {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-top: 12px;
}
.case-works-box h2 span {
  font-size: 90%;
}
.case-works-list>a .case-works-box>.title {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}
.case-works-list>a .case-works-box>.asreet-item {
    display: grid;
    align-items: center;
    column-gap: 12px;
    margin-top: 8px;
}
.asreet-item span {
  width: auto;
  border-bottom: 1px dashed #ccc; /* 太さ1px、破線、薄い灰色 */
}
.case-works-list>a .case-works-box>.asreet-name .img-wrapper {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid rgba(6,16,26,.12);
    overflow: hidden;
}
.case-works-list>a .case-works-box>.asreet-name .img-wrapper>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.case-works-list>a .case-works-box>.asreet-name>p {
    color: #9f7356;
    font-size: 12px;
    line-height: 1.7;
}
.case-works-list>a .case-works-box>.published-at {
    display: block;
    text-align: right;
    color: #06101a9e;
    font-size: 12px;
    line-height: 1.2;
}
@media screen and (max-width: 768px){
  .grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);/*横に並べる数*/
  grid-template-rows: repeat(5, 1fr);/*縦に並べる数 グリッドが増えたら数増やしていく*/
  gap: 40px;
  margin: 5%;
}
.case-works-list>a .case-works-box>.asreet-name  {
    column-gap: 16px;
    margin-top: 14px;
}
.case-works-list>a .case-works-box>.title {
    margin-top: 8px;
    font-size: 18px;
}
.case-works-list>a .case-works-box>.asreet-item {
    column-gap: 20px;
}
.case-works-list>a .case-works-box>.asreet-name .img-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.case-works-list>a .case-works-box>.asreet-name>p {
    font-size: 18px;
}
}

/* 実績子ページに関するCSSここから */
/* パンくずここから */
.Breadcrumb {
  padding: 1em 0 ;
}
.Breadcrumb-ListGroup {
  display: flex;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}
/* パンくずここまで */

.works-child-wrapper {
    max-width: 700px;
    width: 100%;
    margin: auto; 
}
.works-child-wrapper a:hover {
  color: inherit;
  cursor: inherit;
}
.works-child-wrapper .case-works-list .case-works-box img {
  width: 100%;
  height: 400px;
}
.works-child-wrapper-kakitashi {
    padding: 30px 0;
}

.works-child-cate-box {
    text-align: center;
    font-size: 14px;
    color: #808080;
    border: solid 1px #999;
    border-radius: 1px;
    max-width: 160px;
    background-color: #fff;
    margin: 2em 0;
    padding: 6px 0;
}

.works-child-date-box, .works-child-text-box, .works-child-detail {
  margin-bottom: 50px;
}

.works-child-tittle-box h2 {
   line-height: 36px;
}
.works-child-date-box p span {
    color: rgb(136, 83, 26); 
    font-size: 16px;
}
.works-child-text-box p {
    line-height: 38px;
    font-size: 15px;
}
.works-child-text-box p span {
}
.works-child-detail p {
    line-height: 32px; 
    font-size: 15px;
}
@media screen and (max-width: 768px){
.works-child-wrapper {
    max-width: 700px;
    width: 90%;
    margin: auto; 
}
.support-child-wrapper {
  width: 100%;
}
.works-child-cate-box {
    text-align: center;
    font-size: 14px;
    color: #808080;
    border: solid 1px #999;
    border-radius: 3px;
    max-width: 200px;
    background-color: #fff;
    margin: 2em 0;
    padding: 10px 0;
}
.works-child-date-box p span {
    font-size: 18px;
}
}   

/* 実績子ページに関するCSSここまで */

/* 実績に関するCSSここまで */

/* 白抜き戻るボタンここから */
.BT-back {
    text-align: center;
    font-size: 14px;
    color: #808080;
    border: solid 1px #999;
    border-radius: 5px;
    max-width: 200px;
    background-color: #fff;
    margin: auto;
    padding: 12px 0;
}
.BT-back a:hover {
  color: #47a0da;
}
@media screen and (max-width: 768px){
.BT-back {
    max-width: 80%;    
}
}
/* 白抜き戻るボタンここまで */

/* フッター問い合わせエリアここから */
.contact-link {
  width: 60%;
  height: 200px;
  margin: auto;
  background-color: #ededed;
  display: flex;
}


.contact-link {
  background-color: #47a0da;
      background: #479fdabe;/*WINSロゴ色+透過*/

  color: #fff;
}


.contact-link-left {
  width: 50%;
  margin-left: 5%;
  padding: 1em 0;
  font-weight: bold;
}
.contact-link-left-1 {
  font-size: 42px;
}
.contact-link-left-2 {
  font-size: 18px;
}
.contact-link-right {
  width: 50%;
  padding: 5em 3em 0 0;
}
.contact-link-right-1 {
  font-size: 16px;
  font-weight: bold;
}
.btn_box{
  width: 80%;
  margin: 0;
}
.btn_box :hover {
      color: #FFEC50;

}

.btn{
  line-height: 50px;
  margin: 1em 0;
  font-size: 16px;
  text-align: left;
  letter-spacing: .1em;
  border: solid 1px #999;
    border: solid 1px #fff;
  padding-left: 1em;

  position: relative;
  display: block;
  overflow: hidden;
  transition: 0.5s;

}
.btn:after {
  font-family: "FontAwesome";
  content: "\f061";
  position: absolute;
  right: 20px;
}
.btn:hover:after {
  transform: rotate3d(1,0,0,360deg);
  transition: 2s;
}
@media screen and (max-width: 768px){
.contact-link {
  width: 90%;
  height: auto;
  display: block;
}
.contact-link-left {
  width: 100%;
  margin-left: 0;
  padding: 2em 3em;
}
.contact-link-left-1 {
  font-size: 28px;
}
.contact-link-left-2 {
  font-size: 18px;
}
.contact-link-right {
  width: 100%;
  padding: 2em 0 2em ;
}
.contact-link-right-1 {
  font-size: 18px;
  text-align: center;
}
.btn_box{
  width: 70%;
  margin: auto;
}
.btn{
  line-height: 70px;
  text-align: center;
  padding-left: 0;

}

}

.support-proffile {
  margin-bottom: 80px;
}
.support-proffile .main-content-chpage-center {
  font-family: inherit;
}

.main-content-chpage-center ul li, .main-content-chpage-center .table_BLline {
  font-size: 16px;
}


/* ========子ページに関するCSSここまで======== */
