/**
 * Mixin
 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  color: #333;
  letter-spacing: 0.075em;
  font-size: 1.6rem;
  line-height: 2;
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 980px) {
  body {
    font-size: 1.4rem;
  }
}

ul {
  padding-left: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.mtS {
  margin-top: 20px;
}

.mtM {
  margin-top: 40px;
}

.txt-center {
  text-align: center;
}

.txt-bold {
  font-weight: bold;
}

.en .jp_dsp {
  display: none !important;
}

.jp .en_dsp {
  display: none !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 980px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
select {
  padding: 0 10px;
  width: 100%;
  height: 42px;
  border: solid 1px #ccc;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1em;
}

.content {
  min-height: 90vh;
}
@media only screen and (max-width: 980px) {
  .content {
    margin: 0;
  }
}

/* header  */
.header {
  position: fixed;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  height: 62px;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 980px) {
  .header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
  }
}

.content {
  padding-top: 62px;
}
.header__logo {
  width: 180px;
  height: auto;
}
@media only screen and (max-width: 980px) {
  .header__logo {
    width: 150px;
  }
}

.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}
.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gnav ul li {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gnav ul li + li {
  margin-left: 40px;
}
.gnav ul a {
  position: relative;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
}
.gnav ul a:hover {
  color: #f5d93f;
}
@media only screen and (max-width: 980px) {
  .gnav ul a:hover {
    color: inherit;
  }
}
.gnav ul .is-current a {
  color: #f5d93f;
}
@media only screen and (max-width: 980px) {
  .gnav ul .is-current a {
    color: #aaa;
  }
}
.gnav .gnav__item--lang a {
  pointer-events: none;
}
.gnav .gnav__item--lang a::after {
  position: absolute;
  top: calc(50% - 1px);
  right: -10px;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-left: 1px solid;
  content: "";
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.gnav li:hover .gnav__lang {
  display: block;
}

.gnav__lang {
  position: absolute;
  top: 100%;
  left: -30px;
  z-index: 1;
  display: none;
  width: 80px;
  background-color: #fff;
  padding: 0 0 5px;
}
.gnav__lang button {
  position: relative;
  padding: 0;
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  line-height: 2;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.gnav__lang button:hover {
  color: #f5d93f;
}
@media only screen and (max-width: 980px) {
  .gnav__lang button:hover {
    color: inherit;
    opacity: 0.7;
  }
}

.menucloseBtn {
  display: none;
}

@media only screen and (max-width: 980px) {
  .gnav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1;
    display: block;
    padding: 60px 40px 40px;
    width: 70%;
    background: rgba(245, 218, 63, 0.9);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .gnav ul {
    display: block;
  }
  .gnav li {
    margin: 0 !important;
    padding: 5px 0;
  }
  .nav_on.fixed {
    position: fixed;
    width: 100%;
  }
  .nav_on .gnav {
    right: 0;
  }
  .menucloseBtn {
    position: absolute;
    top: 30px;
    right: 5vw;
    display: block;
    width: 26px;
    height: 20px;
  }
  .menucloseBtn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .menucloseBtn span:nth-child(1) {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menucloseBtn span:nth-child(2) {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnav__lang {
    position: relative;
    right: 0;
    left: 0;
    display: block;
    margin-left: -40px;
    padding: 0 40px;
    width: 100%;
    width: calc(100% + 80px);
    background: inherit;
  }
  .gnav__lang button {
    text-align: left;
    font-size: 1.4rem;
  }
  .gnav__lang .lang_off {
    display: none;
  }
  .gnav__item--lang {
    padding: 0 !important;
    border-top: none !important;
  }
  .gnav__item--lang a {
    display: none;
  }
}
.menuBtn {
  display: none;
}
@media only screen and (max-width: 980px) {
  .menuBtn {
    position: relative;
    display: block;
    width: 26px;
    height: 20px;
  }
  .menuBtn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .menuBtn span:nth-child(1) {
    top: 0;
  }
  .menuBtn span:nth-child(2) {
    top: calc(50% - 1px);
  }
  .menuBtn span:nth-child(3) {
    bottom: 0;
  }
}

/* footer */
.footer {
  background-color: #f5d93f;
  padding: 50px 0;
}

.footer__inner {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 980px) {
  .footer__inner {
    display: block;
  }
}

/* .footer__inner > div {
  width: 50%;
}
@media only screen and (max-width: 980px) {
  .footer__inner > div {
    width: 100%;
  }
} */

.footer__logo {
  width: 68%;
}

@media only screen and (max-width: 980px) {
  .footer__logo {
    width: 100%;
    text-align: center;
  }
}
.footer__logo a img {
  width: 180px;
}
@media only screen and (max-width: 980px) {
  .footer__logo a img {
    width: 80%;
    max-width: 400px;
  }
}

.footer__txt {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.footer__nav {
  width: 30%;
}

@media only screen and (max-width: 980px) {
  .footer__nav {
    width: 100%;
    margin-top: 30px;
  }
}
.footer__nav ul {
  width: 180px;
}
@media only screen and (max-width: 980px) {
  .footer__nav ul {
    width: 100%;
  }
}
.footer__nav ul li {
  border-bottom: 1px solid #eee;
  padding: 3px 5px;
}
.footer__nav ul li a {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 980px) {
  .footer__nav ul li a {
    font-size: 1.2rem;
  }
}

.footer__bottom {
  font-size: 1.2rem;
  background-color: #1c1c1c;
  padding: 20px 0;
  color: #f5d93f;
}
.footer__bottom .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 980px) {
  .footer__bottom .inner {
    display: block;
  }
}
.footer__bottom .inner > div {
  width: 50%;
}
@media only screen and (max-width: 980px) {
  .footer__bottom .inner > div {
    width: 100%;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__sns img {
  width: 16px;
}
.footer__sns a:last-child {
  margin-left: 2px;
}

.page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background-color: #000;
}
.page_top::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 1px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

/* common */
.inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* home */
.mv {
  position: relative;
}
.mv__img {
  position: relative;
}
@media only screen and (max-width: 980px) {
  .mv__img {
    height: 60vh;
  }
}
@media only screen and (max-width: 980px) {
  .mv__img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    -o-object-position: center center;
    object-position: center center;
  }
}

.mv__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url(../img/home/tx_b.png);
}

.mv__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.mv__txt p {
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}
@media only screen and (max-width: 980px) {
  .mv__txt p {
    font-size: 18px;
  }
  .en .mv__txt p {
    font-size: 22px;
  }
}

.mv__btn {
  border: 1px solid;
  padding: 10px 15px;
  color: #fff;
  margin-top: 50px;
  display: inline-block;
  font-size: 1.4rem;
}
@media only screen and (max-width: 980px) {
  .mv__btn {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}

.sec_home_oc__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0 120px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 980px) {
  .sec_home_oc__inner {
    display: block;
    padding: 60px 0;
  }
}

.sec_home_oc__img {
  width: 45%;
}
@media only screen and (max-width: 980px) {
  .sec_home_oc__img {
    width: 100%;
  }
}
.sec_home_oc__img img {
  -webkit-box-shadow: 0 0 30px 5px #ccc;
  box-shadow: 0 0 30px 5px #ccc;
}

.sec_home_oc__txt {
  width: 50%;
}
@media only screen and (max-width: 980px) {
  .sec_home_oc__txt {
    width: 100%;
    margin-top: 30px;
  }
}
.sec_home_oc__txt h2 {
  font-size: 2.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}
@media only screen and (max-width: 980px) {
  .sec_home_oc__txt h2 {
    margin-bottom: 0;
    font-size: 2rem;
  }
}

.sec_home_oc__link {
  color: #f5d93f;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 980px) {
  .sec_home_oc__link {
    margin-top: 20px;
  }
}
.sec_home_oc__link span {
  width: 30px;
  height: 30px;
  border: 1px solid;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
}
.sec_home_oc__link span::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.sec_home_games {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 980px) {
  .sec_home_games {
    display: block;
  }
}
.sec_home_games a {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}
.sec_home_games img {
  opacity: 0.6;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
@media only screen and (max-width: 980px) {
  .sec_home_games img {
    width: 120%;
    max-width: inherit;
    height: auto;
    margin-left: -10%;
  }
}
.sec_home_games a:hover {
  opacity: 1;
}
.sec_home_games a:hover img {
  opacity: 1;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.sec_home_wk {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  background-position: right top;
  background-image: url(../img/home/mv.jpg);
  background-repeat: no-repeat;
  background-color: #f5d93f;
}
@media only screen and (max-width: 980px) {
  .sec_home_wk {
    padding: 60px 0;
    background-attachment: inherit;
  }
}
.sec_home_wk::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.sec_home_wk p {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 500;
  z-index: 1;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

@media only screen and (max-width: 980px) {
  .sec_home_wk p {
    font-size: 2rem;
  }
}

.sec_home_wk__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  margin-top: 60px;
}
@media only screen and (max-width: 980px) {
  .sec_home_wk__btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
  }
}
.sec_home_wk__btnWrap a {
  background-color: #f5d93f;
  padding: 15px 30px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 980px) {
  .sec_home_wk__btnWrap a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto !important;
  }
}
.sec_home_wk__btnWrap a::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.sec_home_wk__btnWrap a + a {
  margin-left: 20px;
}
@media only screen and (max-width: 980px) {
  .sec_home_wk__btnWrap a + a {
    margin-top: 10px !important;
  }
}
.sec_home_wk__btnWrap a:hover {
  background-color: #f5d93f;
}
.sec_home_wk__btnWrap a:hover::after {
  height: 0;
}

.page_ttl {
  letter-spacing: 0.075em;
  font-size: 3rem;
  color: #fff;
  height: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 980px) {
  .page_ttl {
    height: 90px;
    font-size: 2rem;
    background-attachment: inherit;
    background-position: center;
  }
}
.page_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.page_ttl div {
  z-index: 1;
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.about .page_ttl {
  background-image: url(../img/about/ttl.jpg);
}

.contact .page_ttl {
  background-image: url(../img/contact/ttl.jpg);
}

.works .page_ttl {
  background-image: url(../img/works/ttl.jpg);
  background-position: center;
}
@media only screen and (max-width: 980px) {
  .works .page_ttl {
    background-position: center top;
  }
}

.sec_about_info {
  padding: 220px 0 120px;
}
@media only screen and (max-width: 980px) {
  .sec_about_info {
    padding: 70px 0 60px;
  }
}

.sec_about_info__img {
  position: relative;
}

.sec_about_info__txt {
  position: absolute;
  background-color: #f5d93f;
  padding: 30px 50px 0;
  width: 600px;
  top: -60px;
  right: -3%;
}
@media only screen and (max-width: 980px) {
  .sec_about_info__txt {
    width: 90%;
    right: -6%;
    top: -30px;
    padding: 20px 20px 0;
  }
}
.sec_about_info__txt::after {
  width: 100%;
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  content: "";
  border-top: solid 30px #f5d93f;
  border-right: solid 30px transparent;
  top: 100%;
}
@media only screen and (max-width: 980px) {
  .sec_about_info__txt::after {
    border-top: solid 20px #f5d93f;
    border-right: solid 20px transparent;
    top: 100%;
  }
}

.sec_about_ov {
  background-color: #f5d93f;
  padding: 50px 0 120px;
}
@media only screen and (max-width: 980px) {
  .sec_about_ov {
    padding: 50px 0;
  }
}
.sec_about_ov h3 {
  text-align: center;
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 980px) {
  .sec_about_ov h3 {
    font-size: 2rem;
  }
}
.sec_about_ov ul {
  max-width: 800px;
  width: 90%;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 980px) {
  .sec_about_ov ul {
    display: block;
    margin: 30px auto 0;
  }
}
.sec_about_ov li {
  width: 48%;
}
@media only screen and (max-width: 980px) {
  .sec_about_ov li {
    width: 100%;
  }
}
.sec_about_ov li:nth-child(n + 3) {
  margin-top: 40px;
}
@media only screen and (max-width: 980px) {
  .sec_about_ov li:nth-child(n + 2) {
    margin-top: 20px;
  }
}
.sec_about_ov h4 {
  font-weight: 500;
}

.en .sec_about_ov h4 {
  font-weight: 500;
}

.en .sec_about_ov h4 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.en .sec_about_ov p {
  font-family: "Montserrat", sans-serif;
}

.sec_about_cu {
  padding: 80px 0;
}

.sec_about_cu {
  text-align: center;
}
.sec_about_cu a {
  border: 1px solid;
  padding: 10px 15px;
  display: inline-block;
  font-size: 1.4rem;
  width: 60%;
  max-width: 400px;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.sec_about_cu a:hover {
  background-color: #f5d93f;
  opacity: 1;
}

/* contact */
.sec_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0 120px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 980px) {
  .sec_contact {
    display: block;
    padding: 60px 0;
  }
}

.sec_contact__img {
  width: 35%;
}
@media only screen and (max-width: 980px) {
  .sec_contact__img {
    width: 100%;
  }
}

.sec_contact__txt {
  width: 60%;
}
@media only screen and (max-width: 980px) {
  .sec_contact__txt {
    width: 100%;
    margin-top: 30px;
  }
}
.sec_contact__txt h2 {
  font-size: 2.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}
@media only screen and (max-width: 980px) {
  .sec_contact__txt h2 {
    margin-bottom: 0;
    font-size: 2rem;
  }
}
.sec_contact__txt dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}
@media only screen and (max-width: 980px) {
  .sec_contact__txt dl {
    display: block;
  }
}
.sec_contact__txt dd {
  margin-left: 5px;
}
@media only screen and (max-width: 980px) {
  .sec_contact__txt dd {
    margin-left: 0;
  }
}
.sec_contact__txt dd img {
  height: 16px;
  vertical-align: middle;
}
.sec_contact__txt a {
  text-decoration: underline;
}
.sec_contact__txt p {
  margin-top: 20px;
}

.works .page_main {
  padding: 50px 0;
}

.sec_works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 980px) {
  .sec_works {
    display: block;
  }
}

.sec_works:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.sec_works__img {
  width: 50%;
}
@media only screen and (max-width: 980px) {
  .sec_works__img {
    width: 100%;
  }
}

.sec_works__txt {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 50px;
}
@media only screen and (max-width: 980px) {
  .sec_works__txt {
    width: 100%;
    padding: 0;
  }
}
.sec_works__txt h3 {
  color: #fc0054;
  font-size: 2.8rem;
  padding: 0 0 30px;
  position: relative;
  margin-bottom: 25px;
  font-family: "montserrat", sans-serif;
}
@media only screen and (max-width: 980px) {
  .sec_works__txt h3 {
    font-size: 2rem;
    padding: 0 0 15px;
    margin-bottom: 10px;
  }
}
.sec_works__txt h3::after {
  content: "";
  display: block;
  height: 5px;
  width: 160px;
  background-color: #f5d93f;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec_works__label {
  padding: 10px;
  background-color: #f5d93f;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 35px;
}
@media only screen and (max-width: 980px) {
  .sec_works__label {
    margin-bottom: 20px;
  }
}

.sec_works__btn--hp a {
  border-bottom: 1px solid;
  padding: 0 0 5px;
  font-size: 1.4rem;
  margin-top: 30px;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  display: block;
}
.sec_works__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media only screen and (max-width: 980px) {
  .sec_works__btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}
.sec_works__btn img {
  height: 40px;
  max-width: inherit;
  width: auto;
}
.sec_works__btn a + a {
  margin-left: 10px;
}

.sec_pp {
  padding: 80px 0 100px;
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
}
.sec_pp h3 {
  font-weight: bold;
  margin: 30px 0 5px;
  font-size: 120%;
  background-color: #f5d93f;
  padding: 5px 10px;
}
.sec_pp h4 {
  font-weight: bold;
  margin: 10px 0 5px;
  border-left: 5px solid #f5d93f;
  padding-left: 10px;
}
.sec_pp ul {
  padding-left: 0;
  list-style: disc;
  padding-left: 1em;
}
.sec_pp ul + h4,
.sec_pp p + h4 {
  margin-top: 30px !important;
}
.sec_pp a {
  text-decoration: underline;
  word-break: break-all;
}
.sec_pp .box1 {
  padding: 20px;
  background-color: #f5f5f5;
  margin-top: 20px;
}
.sec_pp .mtS {
  margin-top: 20px;
}
.sec_pp .mtM {
  margin-top: 40px;
}
.sec_pp .txt_center {
  text-align: center;
}
.sec_pp .txt_right {
  text-align: right;
}
.sec_pp .fsS {
  font-size: 90%;
}
