@charset "UTF-8";
/*******************************************************************/
/*******************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Poppins:wght@100;200;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700;900&display=swap");
html {
  font-size: 62.5%;
  background-color: #F2F0E9;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-size: 1.6rem;
  background-color: #F2F0E9;
  color: #333333;
  line-height: 1.4;
}

img {
  vertical-align: bottom;
}

/***** スクロールアニメーション *****/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/***** 共通 *****/
.area_drawer-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60px;
  background-color: #F2F0E9;
  z-index: 10;
}
@media (max-width: 1024px) {
  .area_drawer-menu {
    width: 100%;
    background-image: url("../img/logo.svg");
    background-repeat: no-repeat;
    background-size: auto 32px;
    background-position: 12px 14px;
  }
}
.area_drawer-menu ul {
  width: 980px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: right;
  position: relative;
}
@media (max-width: 1024px) {
  .area_drawer-menu ul {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: -100vh;
    display: block;
    background-color: #F2F0E9;
    z-index: 9;
  }
}
.area_drawer-menu li {
  padding: 0 24px;
  font-size: 1.4rem;
  height: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .area_drawer-menu li {
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
  }
}
.area_drawer-menu li a {
  text-decoration: none;
}

#logo {
  position: absolute;
  left: 0;
  top: 14px;
  height: 32px;
}
@media (max-width: 1024px) {
  #logo {
    display: none;
  }
}
#logo img {
  height: 52px;
  width: 140px;
}

.btn_gmenu a {
  color: #333333;
  text-decoration: none;
  position: relative;
}
.btn_gmenu a:link, .btn_gmenu a:visited, .btn_gmenu a:active {
  color: #333333;
}
.btn_gmenu a:hover {
  color: #333333;
}
.btn_gmenu a:hover::after {
  transform: scale(1, 1);
}
.btn_gmenu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333333;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.btn_red {
  padding: 6px 12px;
  background: #f44c67;
  color: #ffffff;
  border-radius: 4px;
  border: 2px solid #f44c67;
}
.btn_red:hover {
  color: #f44c67;
  background: none;
}

/*****　ヘッダー *****/
header {
  position: relative;
  height: 700px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  header {
    display: block;
    height: 500px;
  }
}
@media (max-width: 599px) {
  header {
    height: 400px;
  }
}

.box_header {
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .box_header {
    width: 90%;
    margin: 0 auto;
    padding-top: 80px;
  }
}
@media (max-width: 599px) {
  .box_header {
    height: 320px;
  }
}
.box_header h1 {
  font-size: 5.4rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 3px 3px 3px #000, -3px -3px 3px #000, -3px 3px 3px #000, 3px -3px 3px #000, 3px 0px 3px #000, -3px 0px 3px #000, 0px 3px 3px #000, 0px -3px 3px #000;
}
@media (max-width: 599px) {
  .box_header h1 {
    font-size: 9.2vw;
    text-align: center;
  }
}
.box_header h1 span {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  display: block;
}
@media (max-width: 599px) {
  .box_header h1 span {
    font-size: 4.5vw;
  }
}
.box_header ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}
@media (max-width: 599px) {
  .box_header ul {
    justify-content: space-between;
  }
}
.box_header li {
  padding: 8px 16px;
  background-color: #fff;
  color: #000;
  border-radius: 40px;
  margin-right: 24px;
  font-size: 1.4rem;
  font-weight: 700;
}
@media (max-width: 599px) {
  .box_header li {
    font-size: 2.8vw;
    margin-right: 12px;
    font-weight: 700;
  }
}
.box_header li:last-child {
  margin-right: 0;
}

.logo_header {
  width: 400px;
  height: 400px;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .logo_header {
    display: none;
  }
}

#btn_contact {
  width: 320px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: #f44c67;
  color: #ffffff;
  border-radius: 12px;
  border: 2px solid #f44c67;
  margin-top: 24px;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 599px) {
  #btn_contact {
    position: absolute;
    bottom: 24px;
    left: 10%;
    width: 80%;
  }
}
#btn_contact:hover {
  color: #f44c67;
  background: none;
}
#btn_contact a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.openbtn {
  display: none;
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: absolute;
  right: 12px;
  top: 5px;
  z-index: 10;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  .openbtn {
    display: block;
  }
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
@media (max-width: 599px) {
  #video {
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/***** フッター *****/
footer {
  background-color: #333333;
  padding: 32px 0;
  margin-top: 120px;
  width: 100%;
  text-align: center;
}
footer img {
  width: 200px;
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
}

.text_copyright {
  font-size: 1.2rem;
  color: #ffffff;
}

.box_footer_menu {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.box_footer_menu li {
  padding: 0 12px;
  color: #ffffff;
  font-size: 1.4rem;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.box_footer_menu li a {
  color: #ffffff;
  text-decoration: none;
}
.box_footer_menu li a:link, .box_footer_menu li a:visited, .box_footer_menu li a:active {
  color: #ffffff;
}
.box_footer_menu li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/***** コンテンツ *****/
.box_contens {
  width: 980px;
  margin: 0 auto 160px auto;
  padding-top: 80px;
}
@media (max-width: 1024px) {
  .box_contens {
    width: 90%;
  }
}
.box_contens h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 64px;
}
.box_contens h1 span {
  display: block;
  font-size: 1.6rem;
}

.box_column-2 {
  display: flex;
}
@media (max-width: 599px) {
  .box_column-2 {
    flex-wrap: wrap;
  }
}
.box_column-2 div {
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 599px) {
  .box_column-2 div {
    padding-left: 0;
    padding-right: 0;
  }
}
.box_column-2 div h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.4rem;
}
@media (max-width: 599px) {
  .box_column-2 div h2 {
    font-size: 5.5vw;
  }
}
.box_column-2 div p {
  font-size: 1.8rem;
  line-height: 1.6;
}

.box_column-3 {
  display: flex;
  justify-content: center;
}
.box_column-3 div {
  width: 30%;
  margin-right: 5%;
}
.box_column-3 div:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  .box_column-3 div {
    width: 45%;
  }
}

.box_column-4 {
  display: flex;
  justify-content: center;
}
@media (max-width: 599px) {
  .box_column-4 {
    width: 1000px;
    padding-left: 10%;
    padding-right: 10%;
    justify-content: space-between;
  }
}
.box_column-4 div {
  width: calc(22% - 24px);
  margin-right: 4%;
  padding: 12px;
}
.box_column-4 div:last-child {
  margin-right: 0;
}

.cloum_l {
  width: calc(60% - 48px);
}
@media (max-width: 599px) {
  .cloum_l {
    width: 90%;
    margin: 0 auto;
  }
}

.cloum_m {
  width: calc(48% - 48px);
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: #ffffff;
  margin-left: 2%;
  border-radius: 12px;
}
.cloum_m:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  .cloum_m {
    width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin: 64px auto;
  }
  .cloum_m:last-child {
    margin: 64px auto 0 auto;
  }
}
.cloum_m h2 {
  font-size: 2rem;
  text-align: center;
}
.cloum_m p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.cloum_m img {
  width: 100%;
}

.cloum_s {
  width: calc(40% - 48px);
  text-align: center;
}
@media (max-width: 599px) {
  .cloum_s {
    width: 90%;
    margin: 64px auto 0 auto;
  }
}
.cloum_s img {
  display: block;
  width: 90%;
}

.box_playguide {
  background-color: #ffffff;
  border-radius: 12px;
}
@media (max-width: 599px) {
  .box_playguide {
    width: 240px !important;
  }
}
.box_playguide h2 {
  font-size: 1.6rem;
  text-align: center;
}
.box_playguide img {
  width: 100%;
  height: auto;
}
.box_playguide p {
  font-size: 1.4rem;
  text-align: center;
}

.box_text_point {
  margin: 0;
  padding: 0;
  list-style: none;
}
.box_text_point li {
  display: flex;
  align-items: center;
  color: #f44c67;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.box_text_point li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url("../img/icon_check.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 0 0;
}

.box_casestudy h2 {
  font-size: 2rem;
}
@media (max-width: 599px) {
  .box_casestudy h2 {
    font-size: 4.5vw;
    word-break: break-all;
  }
}
.box_casestudy p {
  font-size: 1.6rem;
  line-height: 1.4;
}
.box_casestudy picture {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.box_casestudy picture img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

#contact p {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 700;
}

#btn_contact_bottom {
  width: 640px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background-color: #f44c67;
  color: #ffffff;
  border-radius: 12px;
  border: 2px solid #f44c67;
  margin: 64px auto;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  #btn_contact_bottom {
    width: 90%;
  }
}
#btn_contact_bottom:hover {
  color: #f44c67;
  background: none;
}
#btn_contact_bottom a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

@media (max-width: 599px) {
  .scroll-X {
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
  }
  .scroll-X::-webkit-scrollbar {
    display: none;
  }
}

.text_notes {
  width: 100%;
  font-size: 1rem;
  color: #666;
  text-align: right;
}

/***** 各指定 *****/
.font_red {
  color: #f44c67 !important;
}
.font_red a {
  color: #f44c67 !important;
}
.font_red a::after {
  background: #f44c67 !important;
}

.font_bold {
  font-weight: bold !important;
}

@media (max-width: 599px) {
  .reverse_sp {
    flex-direction: column-reverse;
  }
}

@media (max-width: 599px) {
  .display_pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */