@charset "utf-8";
/* CSS Document */
.index_top {
  display: flex;
  justify-content: space-between;
}
/*mainimg
---------------------------------------------------------------------------*/
.slide_show_fade_in4_4 {
  position: relative;
  overflow: hidden;
  width: 50vw;
  right: 0;
  margin-right: 3vw;
}
.slide_show_fade_in4_4:before {
  content: "";
  display: block;
  padding-top: 66%;
}
.slide_show_fade_in4_4_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  animation: slide_show_fade_in4_4 24s infinite;
}
.slide_show_fade_in4_4_img:nth-of-type(2) {
  animation-delay: 6s;
}
.slide_show_fade_in4_4_img:nth-of-type(3) {
  animation-delay: 12s;
}
.slide_show_fade_in4_4_img:nth-of-type(4) {
  animation-delay: 18s;
}
@keyframes slide_show_fade_in4_4 {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  12.5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
.top-txt {
  width: 49%;
  padding-top: 125px;
}
.top-txt h2 {
  margin-left: 3vw;
  font-size: 210%;
  margin-top: 73px;
  margin-right: 3vw;
}
.top-txt p {
  margin-left: 3vw;
  font-size: 150%;
  margin-top: 30px;
  margin-bottom: 34px;
  margin-right: 6vw;
}
.top-txt a {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  margin-left: 10vw;
  font-size: 2rem;
  padding: 10px 80px 10px 15px;
  border: 1px solid #005060;
  color: #005060;
}
/*ボタン内spanの形状*/
.top-txt a span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #005060;
}
.top-txt a:hover span {
  color: #e2d9c8;
}
/*== 背景が流れる（斜め） */
.about::before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #005060;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
/*hoverした時のアニメーション*/
.about:hover::before {
  animation: skewanime .5s forwards; /*アニメーションの名前と速度を定義*/
}
@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
/**/
/**/
@media (max-width: 970px) {
  .full {
    background-size: 80px 40%;
  }
  .index_top {
    flex-direction: column-reverse;
  }
  .slide_show_fade_in4_4 {
    margin: 0 auto;
    width: 75vw;
    z-index: -10;
  }
  .slide_show_fade_in4_4 img {
    width: 75vw;
  }
  .top-txt {
    width: 80%;
    padding-top: 1px;
  }
  .top-txt h2 {
    margin-left: 2vw;
    font-size: 14px;
    line-height: 1.8em;
  }
  .top-txt p {
    margin-left: 2vw;
    font-size: 13px;
    line-height: 1.8em;
  }
  .top-txt a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    outline: none;
    transition: ease .2s;
    margin-left: 10vw;
    font-size: 2rem;
    padding: 10px 70px 10px 15px;
    border: 1px solid #005060;
    color: #005060;
  }
}
@media (max-width: 331px) {
  .top-txt a {
    margin-left: 1vw;
    padding: 10px 41px 10px 15px;
  }
  .top-txt h2 {
    font-size: 100%;
  }
  .top-txt p {
    font-size: 100%;
  }
}
/**/
/*-------
擬似要素テキストが流れる
-------*/
.flowimg {
  position: relative;
  padding: 5.9vw 52vw;
  overflow: hidden;
}
.flowimg::before, .flowimg::after {
  content: "GUILD \00a0 Co.,Ltd";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  color: #e2d9c8;
  font-size: 13vw;
  font-family: 'Marcellus', serif;
  line-height: 1.0;
  text-align: center;
  z-index: -1;
  opacity: 0.5;
}
.flowimg::before {
  left: 0;
  animation: flowimg 30s linear infinite;
}
.flowimg::after {
  left: 100%;
  animation: flowimg 30s linear infinite;
}
@keyframes flowimg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 480px) {
  .flowimg {
    padding: 7vw 45vw;
    overflow: hidden;
  }
}
/**/
/*<<<<<<<<<<<<<<<<<work1 (PC)>>>>>>>>>>>>>>>>>>>*/
.work_top {
  font-size: 3.6rem;
  text-align: center;
  color: #005060;
  margin: 100px 0;
}
.work1_1_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.work1_1-img img {
  width: 73vw;
  right: 0;
  height: 37vw;
}
.work1_1-txt h2 {
  margin-left: 7vw;
  font-size: 1.5rem;
  margin-top: 130px;
  color: #e1deda;
  opacity: 0.8;
}
.work1_1-txt p {
  margin-left: 7vw;
  font-size: 210%;
  margin-top: 25px;
  margin-bottom: 90px;
  color: #333;
  margin-right: 20px;
  line-height: 2em;
}
.work1_1-txt a {
  /*アニメーションの起点とするためrelativeを指定*/
  position: absolute;
  /*ボタンの形状*/
  text-decoration: none;
  text-align: center;
  outline: none;
  margin-left: 14vw;
  font-size: 2rem;
  background-color: #005060;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 420px;
  height: 100px;
  display: table;
  margin-top: -4vw;
  transition: width 1s;
}
.work1_1-txt a:hover {
  width: 450px;
}
/*ボタン内spanの形状*/
.work1_1-txt a span {
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #e1deda;
  display: table-cell;
  vertical-align: middle;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.work1_1-txt a:hover span {
  color: #e2d9c8;
}
.work1_1_bth::after {
  content: '';
  position: absolute;
  top: 36%;
  right: 20px;
  width: 14px;
  height: 15px;
  border-top: 2px solid #e1deda;
  border-right: 2px solid #e1deda;
  transform: rotate(45deg);
  transition: all .5s;
}
/*hoverした際のアニメーション*/
.work1_1_bth:hover::after {
  animation: arrowrotate .3s;
  right: 30px;
}
@keyframes arrowrotate {
  100% {
    transform: rotate(360deg);
  }
}
/**/
/**/
.work1_2_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.work1_2-img img {
  width: 73vw;
  right: 0;
  height: 37vw;
}
.work1_2-txt h2 {
  margin-left: 7vw;
  font-size: 1.5rem;
  margin-top: 130px;
  color: #e1deda;
  opacity: 0.8;
}
.work1_2-txt p {
  margin-left: 7vw;
  font-size: 210%;
  margin-top: 25px;
  margin-bottom: 90px;
  color: #333;
  margin-right: 20px;
  line-height: 2em;
}
.work1_2-txt a {
  /*アニメーションの起点とするためrelativeを指定*/
  position: absolute;
  /*ボタンの形状*/
  text-decoration: none;
  text-align: center;
  outline: none;
  margin-left: -6vw;
  font-size: 2rem;
  background-color: #005060;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  z-index: 10;
  width: 420px;
  height: 100px;
  display: table;
  margin-top: -4vw;
  transition: width 1s;
}
.work1_2-txt a:hover {
  width: 450px;
}
/*ボタン内spanの形状*/
.work1_2-txt a span {
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #e1deda;
  display: table-cell;
  vertical-align: middle;
  /*アニメーションの指定*/
  transition: ease .2s;
}
.work1_2-txt a:hover span {
  color: #e2d9c8;
}
.work1_2_bth::after {
  content: '';
  position: absolute;
  top: 36%;
  right: 20px;
  width: 14px;
  height: 15px;
  border-top: 2px solid #e1deda;
  border-right: 2px solid #e1deda;
  transform: rotate(45deg);
  transition: all .5s;
}
/*hoverした際のアニメーション*/
.work1_2_bth:hover::after {
  animation: arrowrotate .3s;
  right: 30px;
}
@keyframes arrowrotate {
  100% {
    transform: rotate(360deg);
  }
}
.work_2_2 {
  display: none;
}
/*<<<<<<<<<<<<<<<<<work2 (sp)>>>>>>>>>>>>>>>>>>>*/
@media (max-width:970px) {
  .works1_1 {
    display: none;
  }
  .work_2_2 {
    display: block;
    background-image: url("https://i.gyazo.com/4267f862fd732533c3ad02f7fcd3444e.jpg");
    background-size: cover;
    padding-bottom: 60px;
  }
  .work2_top {
    font-size: 3.6rem;
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
    padding-top: 40px;
  }
  .work2_txt {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .work2_txt li {
  list-style: none;
    width: 38%;
    height: 35vw;
    margin: 21px;
    background-color: #005060;
  }
}
/**/
/**/
.work2_txt li:hover {
  animation: shine 0.3s;
}
@keyframes shine {
  0% {
    background: #444;
  }
  10% {
    background: #ccc;
  }
  100% {
    background: #444;
  }
}
.icon-img {
  background-color: #fff;
  margin-top: 20%;
  width: 55%;
}.icon-coin {
background-color: #fff;
    margin-top: 16%;
    width: 53%;
    margin-left: 4px;
}
.icon_family{
background-color: #fff;
    margin-top: 24%;
    margin-left: -12px;
    margin-right: -15px;
    width: 68%;
}
.work2-img {
  background-color: #fff;
  border-radius: 50%;
  width: 15vw;
  height: 15vw;
  margin: 13% auto 10px;
}
.work2_bth {
  text-decoration: none;
  color: #e1deda;
  font-size: 1.7em;
  line-height: 2rem;
}
.viewa_bth a {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  outline: none;
  transition: ease .2s;
  margin-left: 10vw;
  font-size: 2rem;
  padding: 10px 70px 10px 15px;
  background-color: #fff;
  margin: 40px 0 0 40%;
}
.work2_2-txt_f {
  font-size: 92%;
  margin-top: 8%;
}
.work2_2-txt_s {
  margin-top: 12%;
}
/*ボタン内spanの形状*/
.viewa_bth a span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #005060;
}
.viewa_bth a:hover span {
  color: #e2d9c8;
}
/*== 背景が流れる（斜め） */
.viewa::before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #005060;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
/*hoverした時のアニメーション*/
.viewa:hover::before {
  animation: skewanime .5s forwards; /*アニメーションの名前と速度を定義*/
}
/*work2#*/
/*背景色が伸びて出現 共通*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------- 左から --------*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #005060; /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*<<<<<<<<<<<<<<<<<news>>>>>>>>>>>>>>>>>>>*/
.news-top {
  font-size: 3.6rem;
  text-align: center;
  color: #005060;
  margin: 100px 0 50px;
}
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
  margin: 0 13% 60px;
  height: 300px;
}
.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.lineTrigger::before, .lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #f7f3f3; /* 枠線の色*/
}
/*左右線*/
.line2::before, .line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #f7f3f3; /* 枠線の色*/
}
.line3::before, .line3::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #f7f3f3; /* 枠線の色*/
}
/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}
.lineTrigger.lineanime::before {
  animation: lineAnime .5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/
}
/*右線*/
.line2::before {
  top: 0;
  right: 0;
}
.line3::before {
  top: 0;
  right: 0;
}
.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 .5s linear .5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}
/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}
.lineTrigger.lineanime::after {
  animation: lineAnime .5s linear 1s forwards;
  /*表示されて1秒後に下線が0.5秒かけて表示*/
}
/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}
.line3::after {
  bottom: 0;
  left: 0;
}
.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 .5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}
@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime .5s linear 1.3s forwards; /*1.3秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
  list-style: none;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none
}
@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#scroll {
  margin: 0 auto;
  height: 299px;
  overflow: scroll;
  overflow-x: hidden;
  background-color: #f7f3f3;
}
#scroll li {
  margin-top: 3vw;
}
#scroll span {
  font-size: 1.6rem;
  margin: 0 12% 0 10%;
}
#scroll p {
  font-size: 1.6rem;
  display: inline-block;
  padding-top: 10px;
}
#scroll div {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
#scroll div:before {
  content: '';
  position: absolute;
  width: 62vw; /*線の長さ*/
  height: 1px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: #005060; /*線の色*/
}
/**/
#scroll::-webkit-scrollbar {
  width: 7px;
}
#scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(0deg, #005040, #005060);
  border-radius: 3px;
}
#scroll::-webkit-scrollbar-track {
  background: rgba(100, 100, 100, .5);
}
/**/
@media (max-width:1250px) {
  #scroll p {
    font-size: 1.4rem;
  }
}
@media (max-width:1150px) {
  #scroll span {
    margin: 0 5vw 0 10%;
  }
}
@media (max-width:1050px) {
  #scroll li {
    text-align: center;
  }
}
@media (max-width:900px) {
  .news-top {
    margin: 50px 0 50px;
  }
  .news h2 {
    margin-bottom: 25px;
  }
  #scroll {
    height: 250px;
    background-color: #f7f3f3;
  }
  #scroll li {
    margin-top: 9px;
  }
  #scroll p {
    padding: 4vw 14vw;
    font-size: 1.2rem;
  }
  #scroll span {
    padding: 40px;
    font-size: 1.2rem;
  }
  #scroll div {
    margin-top: 0;
  }
  .lineTrigger {
    position: relative;
    opacity: 0;
    margin: 0 20px 60px;
    height: 250px;
  }
}
/**/
/*<<<<<<<<<<<<<<<<<contect>>>>>>>>>>>>>>>>>>>*/
.contact {
  background-image: url("https://i.gyazo.com/339ce9a49792cdddf868b4621d5d1add.png");
  width: 100%;
  background-size: cover;
}
.contact h2 {
  font-size: 3.6rem;
  text-align: center;
  color: #e1deda;
  padding-top: 60px;
}
.contact p {
  font-size: 160%;
  text-align: center;
  color: #e1deda;
  margin: 40px 0;
}
.view_bth {
  text-align: center;
}
.contact a {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  font-size: 2rem;
  padding: 10px 70px 10px 15px;
  border: 1px solid #e1deda;
  color: #e1deda;
}
/*ボタン内spanの形状*/
.contact a span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #e1deda;
}
.contact a:hover span {
  color: #005060;
}
/*ontent#*/
/*content sp*/
@media (max-width:900px) {
  .contact h2 {
    padding-top: 50px;
  }
  .contact p {
    font-size: 1.4rem;
    margin: 40px 0;
  }
}
/*== 背景が流れる（斜め） */
.view::before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -130%;
  /*色や形状*/
  background: #e1deda;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}
/*hoverした時のアニメーション*/
.view:hover::before {
  animation: skewanime .5s forwards; /*アニメーションの名前と速度を定義*/
}
@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.flowimg2 {
  position: relative;
  padding: 5.9vw 7vw;
  overflow: hidden;
  z-index: 9999;
}
.flowimg2::before, .flowimg2::after {
  content: "GUILD Co.,Ltd GUILD Co.,Ltd GUILD Co.,Ltd　";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  color: #005060;
  font-size: 13vw;
  font-family: 'Marcellus', serif;
  line-height: 1.0;
  text-align: center;
  z-index: -1;
  opacity: 0.5;
}
.flowimg2::before {
  left: 0;
  animation: flowimg 60s linear infinite;
}
.flowimg2::after {
  left: 100%;
  animation: flowimg 60s linear infinite;
}
@keyframes flowimg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}