@charset "UTF-8";
/* CSS Document */
/* --------------- main --------------- */
.main{
  width: 100%;
  margin-top: 60px;
}
.main-top {
  padding: 60px 20px 0;
}
.main-top h1 {
  font-size: 6rem;
  text-align: left;
  line-height: 5rem;
}
.main-text {
  width: 78%;
  margin: 60px auto 0;
}
.main-text p {
  font-size: 1.6rem;
  letter-spacing: -0.1rem;
  line-height: 2rem;
  text-align: left;
}
.main-menu {
  width: 68%;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}
.main-menu-menu a {
  font-size: 2rem;
  text-shadow: 1px 1px 3px #808080;
}
.main-menu-1 a {
  font-size: 2rem;
  color: #575DA9;
  text-shadow: 1px 1px 3px #575DA9;
}
.main-menu-2 a {
  font-size: 2rem;
  color: #E42D9F;
  text-shadow: 1px 1px 3px #E42D9F;
}
.main-menu-3 a {
  font-size: 2rem;
  color: #D7DD35;
  text-shadow: 1px 1px 3px #D7DD35;
}
.main-menu-4 a {
  font-size: 2rem;
  color: #02558B;
  text-shadow: 1px 1px 3px #02558B;
}
@media(min-width:480px){
  .main-top {
    padding: 60px 40px 0;
  }
}
@media(min-width:960px){
  .main {
    margin-top: 100px;
  }
  .main-top {
    padding: 100px 100px 0;
  }
  .main-top h1 {
    font-size: 18rem;
    line-height: 18rem;
  }
  .main-text {
    margin-top: 100px;
  }
  .main-text p {
    font-size: 2rem;
  }
  .main-menu {
    margin-top: 100px;
  }
}

/* --------------- 01 Web --------------- */
.website {
  position: relative;
  width: 78%;
  margin: 60px auto 0;
  padding-bottom: 40px;
}
.website-top-line-blue hr {
  height: 1rem;
  width: 71%;
  border-width: 0;
  background-color: #575DA9;
  margin-bottom: 60px;
}
.outline-top-menu-01 {
  margin-bottom: 20px;
}
.heading-01 {
	position: relative;
	padding-left: 10px;
	font-size: 2rem;
}
.heading-01::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #575DA9;
	font-size: 3rem;
}
.heading-01::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #575DA9;
}
.website-img img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 5px 5px 0px #575DA9;
}
.website-text {
  width: 78%;
  margin: 20px auto 0;
}
.website-text p {
  text-align: left;
  font-size: 1.4rem;
}
@media(min-width:480px){
  .website {
    width: 68%;
  }
  .website-top-line-blue hr {
    margin-bottom: 60px;
  }
  .heading-01 {
    text-align: left;
    padding-left: 60px;
  }
  .website-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .website-img img {
    width: 150px;
    height: 180px;
  }
  .website-text {
    margin: 0 auto;
  }
  .website-text p {
    line-height: 1,8rem;
  }
}
@media(min-width:960px){
  .website {
    margin-top: 100px;
  }
  .website-top-line-blue hr {
    margin-bottom: 100px;
  }
  .outline-top-menu-01 {
    margin-bottom: 60px;
  }
  .heading-01 {
    font-size: 3rem;
    padding-left: 100px;
  }
  .heading-01::before {
    font-size: 6rem;
  }
  .heading-01::after {
    bottom: -5px;
    height: 2px;
  }
  .website-flex {
    gap: 5rem;
    width: 89%;
    margin: 60px auto;
  }
  .website-img img {
    width: 300px;
    height: 350px;
    border-radius: 20%;
    box-shadow: 10px 10px 0px #575DA9;
  }
  .website-text p {
    font-size: 2rem;
    line-height: 3rem;
  }
}
/* ---------- 01 Web flow ---------- */
.website-flow {
  margin: 40px auto;
}
.website-flow h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-align: center;
}
.website-flow h2::after,.website-flow h2::before {
  content: "";
  width: 20vw;
  height: 2px;
  background-color: #575DA9;
}
.website-flow h2::after {
  margin-left: 2rem;
}
.website-flow h2::before {
  margin-right: 2rem;
}
/* 制作の流れ */
.website-flow-list {
  text-align: left;
  margin-bottom: 20px;
}
.website-flow-list h3 {
  position: relative;
  font-size: 1.6rem;
  padding-top: 1rem;
  padding-left: 1.5rem;
}
.website-flow-list span {
  position: relative;
  z-index: 2;
}
.website-flow-list h3::before {
  content: attr(data-en);
	position: absolute;
	top: 0;
	left: 0;
	color: rgba(87,93,169,0.3);
	font-size: 3rem;
	text-transform: uppercase;
	z-index: 1;
}
.website-flow-list p {
  font-size: 1.2rem;
  padding: 20px;
  letter-spacing: -0.09rem;
  line-height: 1.8rem;
}
@media(min-width:960px){
  .website-flow {
    margin: 60px auto;
  }
  .website-flow h2 {
    font-size: 2.4rem;
  }
  .website-flow h2::before,.website-flow h2::after {
    width: 15vw;
  }
  .website-flow h2::before {
    margin-right: 3rem;
  }
  .website-flow h2::after {
    margin-left: 3rem;
  }
  .website-flow-list {
    width: 68%;
    margin: 0 auto 40px;
  }
  .website-flow-list h3 {
    font-size: 2.4rem;
    padding-top: 3rem;
    padding-left: 4rem;
  }
  .website-flow-list h3::before {
    font-size: 6rem;
  }
  .website-flow-list p {
    font-size: 1.8rem;
    padding: 40px;
    letter-spacing: normal;
    line-height: normal;
  }
}

/* --------------- 02 logo --------------- */
.logo-design {
  position: relative;
  width: 78%;
  margin: 60px auto 0;
  padding-bottom: 40px;
}
.logo-design-top-line-pink hr {
  height: 1rem;
  width: 71%;
  border-width: 0;
  background-color: #E42D9F;
  margin-bottom: 60px;
}
.outline-top-menu-02 {
  margin-bottom: 20px;
}
.heading-02 {
	position: relative;
	padding-left: 10px;
	font-size: 2rem;
}
.heading-02::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #E42D9F;
	font-size: 3rem;
}
.heading-02::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #E42D9F;
}
.logo-design-img img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 5px 5px 0px #E42D9F;
}
.logo-design-text {
  width: 78%;
  margin: 20px auto 0;
}
.logo-design-text p {
  text-align: left;
  font-size: 1.4rem;
}
@media(min-width:480px){
  .logo-design {
    width: 68%;
  }
  .logo-design-top-line-pink hr {
    margin-bottom: 60px;
  }
  .heading-02 {
    text-align: left;
    padding-left: 60px;
  }
  .logo-design-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .logo-design-img img {
    width: 150px;
    height: 180px;
  }
  .logo-design-text {
    margin: 0 auto;
  }
  .logo-design-text p {
    line-height: 1,8rem;
  }
}
@media(min-width:960px){
  .logo-design {
    margin-top: 100px;
  }
  .logo-design-top-line-pink hr {
    margin-bottom: 100px;
  }
  .outline-top-menu-02 {
    margin-bottom: 60px;
  }
  .heading-02 {
    font-size: 3rem;
    padding-left: 100px;
  }
  .heading-02::before {
    font-size: 6rem;
  }
  .heading-02::after {
    bottom: -5px;
    height: 2px;
  }
  .logo-design-flex {
    gap: 5rem;
    width: 89%;
    margin: 60px auto;
  }
  .logo-design-img img {
    width: 300px;
    height: 350px;
    border-radius: 20%;
    box-shadow: 10px 10px 0px #E42D9F;
  }
  .logo-design-text p {
    font-size: 2rem;
    line-height: 3rem;
  }
}

/* ---------- 02 logo flow ---------- */
.logo-design-flow {
  margin: 40px auto;
}
.logo-design-flow h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-align: center;
}
.logo-design-flow h2::after,.logo-design-flow h2::before {
  content: "";
  width: 20vw;
  height: 2px;
  background-color: #E42D9F;
}
.logo-design-flow h2::after {
  margin-left: 2rem;
}
.logo-design-flow h2::before {
  margin-right: 2rem;
}
/* 制作の流れ */
.logo-design-flow-list {
  text-align: left;
  margin-bottom: 20px;
}
.logo-design-flow-list h3 {
  position: relative;
  font-size: 1.6rem;
  padding-top: 1rem;
  padding-left: 1.5rem;
}
.logo-design-flow-list span {
  position: relative;
  z-index: 2;
}
.logo-design-flow-list h3::before {
  content: attr(data-en);
	position: absolute;
	top: 0;
	left: 0;
	color: rgba(228,45,159,0.3);
	font-size: 3rem;
	text-transform: uppercase;
	z-index: 1;
}
.logo-design-flow-list p {
  font-size: 1.2rem;
  padding: 20px;
  letter-spacing: -0.09rem;
  line-height: 1.8rem;
}
@media(min-width:960px){
  .logo-design-flow {
    margin: 60px auto;
  }
  .logo-design-flow h2 {
    font-size: 2.4rem;
  }
  .logo-design-flow h2::before,.logo-design-flow h2::after {
    width: 15vw;
  }
  .logo-design-flow h2::before {
    margin-right: 3rem;
  }
  .logo-design-flow h2::after {
    margin-left: 3rem;
  }
  .logo-design-flow-list {
    width: 68%;
    margin: 0 auto 40px;
  }
  .logo-design-flow-list h3 {
    font-size: 2.4rem;
    padding-top: 3rem;
    padding-left: 4rem;
  }
  .logo-design-flow-list h3::before {
    font-size: 6rem;
  }
  .logo-design-flow-list p {
    font-size: 1.8rem;
    padding: 40px;
    letter-spacing: normal;
    line-height: normal;
  }
}

/* --------------- 03 graphic --------------- */
.graphic-design {
  position: relative;
  width: 78%;
  margin: 60px auto 0;
  padding-bottom: 40px;
}
.graphic-design-top-line-yellow hr {
  height: 1rem;
  width: 71%;
  border-width: 0;
  background-color: #D7DD35;
  margin-bottom: 60px;
}
.outline-top-menu-03 {
  margin-bottom: 20px;
}
.heading-03 {
	position: relative;
	padding-left: 10px;
	font-size: 2rem;
}
.heading-03::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #D7DD35;
	font-size: 3rem;
}
.heading-03::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #D7DD35;
}
.graphic-design-img img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 5px 5px 0px #D7DD35;
}
.graphic-design-text {
  width: 78%;
  margin: 20px auto 0;
}
.graphic-design-text p {
  text-align: left;
  font-size: 1.4rem;
}
@media(min-width:480px){
  .graphic-design {
    width: 68%;
  }
  .graphic-design-top-line-yellow hr {
    margin-bottom: 60px;
  }
  .heading-03 {
    text-align: left;
    padding-left: 60px;
  }
  .graphic-design-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .graphic-design-img img {
    width: 150px;
    height: 180px;
  }
  .graphic-design-text {
    margin: 0 auto;
  }
  .graphic-design-text p {
    line-height: 1,8rem;
  }
}
@media(min-width:960px){
  .graphic-design {
    margin-top: 100px;
  }
  .graphic-design-top-line-yellow hr {
    margin-bottom: 100px;
  }
  .outline-top-menu-03 {
    margin-bottom: 60px;
  }
  .heading-03 {
    font-size: 3rem;
    padding-left: 100px;
  }
  .heading-03::before {
    font-size: 6rem;
  }
  .heading-03::after {
    bottom: -5px;
    height: 2px;
  }
  .graphic-design-flex {
    gap: 5rem;
    width: 89%;
    margin: 60px auto;
  }
  .graphic-design-img img {
    width: 300px;
    height: 350px;
    border-radius: 20%;
    box-shadow: 10px 10px 0px #D7DD35;
  }
  .graphic-design-text p {
    font-size: 2rem;
    line-height: 3rem;
  }
}

/* ---------- 03 graphic flow ---------- */
.graphic-design-flow {
  margin: 40px auto;
}
.graphic-design-flow h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-align: center;
}
.graphic-design-flow h2::after,.graphic-design-flow h2::before {
  content: "";
  width: 20vw;
  height: 2px;
  background-color: #D7DD35;
}
.graphic-design-flow h2::after {
  margin-left: 2rem;
}
.graphic-design-flow h2::before {
  margin-right: 2rem;
}
/* 制作の流れ */
.graphic-design-flow-list {
  text-align: left;
  margin-bottom: 20px;
}
.graphic-design-flow-list h3 {
  position: relative;
  font-size: 1.6rem;
  padding-top: 1rem;
  padding-left: 1.5rem;
}
.graphic-design-flow-list span {
  position: relative;
  z-index: 2;
}
.graphic-design-flow-list h3::before {
  content: attr(data-en);
	position: absolute;
	top: 0;
	left: 0;
	color: rgba(215,221,53,0.3);
	font-size: 3rem;
	text-transform: uppercase;
	z-index: 1;
}
.graphic-design-flow-list p {
  font-size: 1.2rem;
  padding: 20px;
  letter-spacing: -0.09rem;
  line-height: 1.8rem;
}
@media(min-width:960px){
  .graphic-design-flow {
    margin: 60px auto;
  }
  .graphic-design-flow h2 {
    font-size: 2.4rem;
  }
  .graphic-design-flow h2::before,.graphic-design-flow h2::after {
    width: 15vw;
  }
  .graphic-design-flow h2::before {
    margin-right: 3rem;
  }
  .graphic-design-flow h2::after {
    margin-left: 3rem;
  }
  .graphic-design-flow-list {
    width: 68%;
    margin: 0 auto 40px;
  }
  .graphic-design-flow-list h3 {
    font-size: 2.4rem;
    padding-top: 3rem;
    padding-left: 4rem;
  }
  .graphic-design-flow-list h3::before {
    font-size: 6rem;
  }
  .graphic-design-flow-list p {
    font-size: 1.8rem;
    padding: 40px;
    letter-spacing: normal;
    line-height: normal;
  }
}

/* --------------- 04 total --------------- */
.total-design {
  position: relative;
  width: 78%;
  margin: 60px auto 0;
  padding-bottom: 40px;
}
.total-design-top-line-blue hr {
  height: 1rem;
  width: 71%;
  border-width: 0;
  background-color: #02558B;
  margin-bottom: 60px;
}
.outline-top-menu-04 {
  margin-bottom: 20px;
}
.heading-04 {
	position: relative;
	padding-left: 10px;
	font-size: 2rem;
}
.heading-04::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #02558B;
	font-size: 3rem;
}
.heading-04::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #02558B;
}
.total-design-img img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 5px 5px 0px #02558B;
}
.total-design-text {
  width: 86%;
  margin: 20px auto 0;
}
.total-design-text p {
  text-align: left;
  font-size: 1.4rem;
}
@media(min-width:480px){
  .total-design {
    width: 68%;
  }
  .total-design-top-line-blue hr {
    margin-bottom: 60px;
  }
  .heading-04 {
    text-align: left;
    padding-left: 60px;
  }
  .total-design-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .total-design-img img {
    width: 150px;
    height: 180px;
  }
  .total-design-text {
    margin: 0 auto;
  }
  .total-design-text p {
    line-height: 1,8rem;
  }
}
@media(min-width:960px){
  .total-design {
    margin: 100px auto 200px;
  }
  .total-design-top-line-blue hr {
    margin-bottom: 100px;
  }
  .outline-top-menu-04 {
    margin-bottom: 60px;
  }
  .heading-04 {
    font-size: 3rem;
    padding-left: 100px;
  }
  .heading-04::before {
    font-size: 6rem;
  }
  .heading-04::after {
    bottom: -5px;
    height: 2px;
  }
  .total-design-flex {
    gap: 5rem;
    width: 89%;
    margin: 60px auto;
  }
  .total-design-img img {
    width: 300px;
    height: 350px;
    border-radius: 20%;
    box-shadow: 10px 10px 0px #02558B;
  }
  .total-design-text p {
    font-size: 2rem;
    line-height: 3rem;
  }
}

/* --------------- Creative Works --------------- */
.creative-works {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}
.creative-works-top-menu {
  width: 78%;
  margin: 0 auto;
  text-align: left;
}
.creative-works-top-menu h1 {
  font-size: 3rem;
  display: inline-block;
}
.creative-works-top-line-pink hr {
  height: 1rem;
  width: 53%;
  border-width: 0;
  background-color: #E42D9F;
  margin-top: 0;
  margin-right: 0;
}

/* --- スライダー --- */
.creative-works-slider {
  margin: 40px 20px 0px;
}
.creative-works-slider img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  box-shadow: 2px 2px 3px #E42D9F;
  margin: 5px;
}
.creative-works-slider .slick-slide {
  margin:0;/*スライド左右の余白調整*/
}
.creative-works-slider p {
  width: 100px;
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: left;
  padding-left: 5px;
}
.creative-works-slider-1 {
  margin: 20px 20px 40px;
}
.creative-works-slider-1 img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  box-shadow: 2px 2px 3px #E42D9F;
  margin: 5px;
}
.creative-works-slider-1 .slick-slide {
  margin:0;/*スライド左右の余白調整*/
}
.creative-works-slider-1 p {
  width: 100px;
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: left;
  padding-left: 5px;
}

/* -- btn -- */
.creative-works-btn {
  margin-top: 20px;
  margin-bottom: 40px;
}
.creative-works-btnarrow5 {
  position: relative;
  border-radius: 100vh;
  background-color: #E42D9F;
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  outline: none;
  transition: all .2s linear;
}
.creative-works-btnarrow5:hover {
  background:#D7DD35;
  color:#fff;
}
.creative-works-btnarrow5::before {
  content:"";
  position: absolute;
  top:50%;
  right:-20px;
  width:30px;
  height:2px;
  background:#D7DD35;
  transition: all .2s linear;
}
.creative-works-btnarrow5::after {
  content:"";
  position: absolute;
  top: 20%;
  right: -16px;
  width:2px;
  height:12px;
  background:#D7DD35;
  transform:skewX(45deg);
  transition: all .2s linear;
}
/*hoverした際の移動*/
.creative-works-btnarrow5:hover::before {
  right:-30px;
}
.creative-works-btnarrow5:hover::after {
  right:-25px;
}
@media(min-width:960px){
  .creative-works {
    margin-bottom: 100px;
  }
  .creative-works-top-menu {
    width: 79%;
  }
  .creative-works-top-menu h1 {
    font-size: 6rem;
  }
  .creative-works-top-line-pink {
    width: 79%;
    margin: -25px auto;
  }
  .creative-works-top-line-pink hr {
    width: 55%;
  }
  /* --- スライダー --- */
  .creative-works-slider {
    margin: 150px 200px 0px;
  }
  .creative-works-slider img {
    width: 250px;
    height: 150px;
    box-shadow: 4px 4px 5px #E42D9F;
    margin: 5px;
  }
  .creative-works-slider p {
    width: 150px;
    font-size: 2rem;
    line-height: 1.8rem;
    padding-left: 10px;
  }
  .creative-works-slider-1 {
    margin: 60px 200px 150px;
  }
  .creative-works-slider-1 img {
    width: 250px;
    height: 150px;
    box-shadow: 4px 4px 5px #E42D9F;
    margin: 10px;
  }
  .creative-works-slider-1 p {
    width: 150px;
    font-size: 2rem;
    line-height: 1.8rem;
    padding-left: 10px;
  }
  /* -- btn -- */
  .creative-works-btn {
    text-align: right;
    margin-top: 40px;
    margin-bottom: 60px;
    margin-right: 200px;
  }
}

/* --------------- Menu --------------- */
.menu {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}
.menu-top-line-yellow hr {
  height: 1rem;
  width: 53%;
  border-width: 0;
  background-color: #D7DD35;
  margin-bottom: 60px;
}
.menu-top {
  width: 68%;
  margin: 0 auto;
}
.menu-top h2 {
  font-size: 2.4rem;
  text-align: left;
  padding-bottom: 20px;
}
.menu-list {
  width: 68%;
  margin: 0 auto;
  padding-bottom: 60px;
}
.menu-top-flex {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
}
.menu-tab-reader {
  padding-bottom: 10px;
}
.menu-tab-reader h2 {
  font-size: 2.4rem;
}
.menu-top-flex {
  padding-bottom: 5px;
}
.menu-tab-reader-1 {
  font-size: 1.6rem;
  font-weight: 600;
}
hr.menu-line {
  position: relative;
  top: 55%;
  margin: 0 10px;
  border: none;
  border-top: dotted 1px #333;
}
.menu-tab-reader-2 {
  flex: auto;
}
.menu-tab-reader-3 {
  font-size: 1.4rem;
}
@media(min-width:960px){
  .menu {
    margin-bottom: 100px;
  }
  .menu-top-line-blue hr {
    width: 43%;
  }
  .menu-top {
    width: 72%;
  }
  .menu-list {
    width: 37%;
    max-width: 1140px;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .menu-list-flex2 {
    width: 50%;
    margin-top: 20px;
  }
  .menu-tab-reader h2 {
    font-size: 6rem;
  }
  .menu-top-flex {
    padding-bottom: 15px;
  }
  .menu-tab-reader {
    padding-bottom: 40px;
  }
  .menu-tab-reader-1 {
    font-size: 2rem;
  }
  hr.menu-line {
    margin: 0 30px;
  }
  .menu-tab-reader-3 {
    font-size: 1.8rem;
  }
}
/* --------------- Contact --------------- */
.contact-box {
  width: 68%;
  margin: 0 auto 60px;
  background-color: #FAFAFA;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);
  border-radius: 30px;
}
.contact-top-menu {
  padding-top: 25px;
  padding-bottom: 25px;
}
.contact-top-menu h1 {
  font-size: 2.4rem;
}
.contact-text {
  width: 86%;
  margin: 0 auto;
}
.contact-text p {
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  line-height: 1.8rem;
  text-align: left;
  padding-bottom: 20px;
}
.contact-btn {
  padding-bottom: 25px;
}
.contact-btn img {
  width: 37%;
}
@media(min-width:960px){
  .contact-box {
    width: 47%;
  }
  .contact-top-menu {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .contact-top-menu h1 {
    font-size: 6rem;
    padding-bottom: 20px;
  }
  .contact-text {
    width: 68%;
  }
  .contact-text p {
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    line-height: 2rem;
    padding-bottom: 40px;
  }
  .contact-btn {
    padding-bottom: 60px;
  }
  .contact-btn img {
    width: 17%;
  }
}