/*******************************
		BASE CODE
*******************************/
.c-linkbtn {
  padding: 0 15px 0;
  margin-bottom: 60px;
}
.c-linkbtn .link_btn_inner {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
.c-linkbtn .link_btn_inner li {
  margin: 0 auto 30px;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link {
  width: 320px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  background-color: #004080;
  font-size: 1.8rem;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  border: 1px solid #004080;
  text-decoration: none;
  transition: color 0.3s;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link span {
  z-index: 2;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 35px;
  transform-origin: center;
  transition: border, right 0.3s;
  z-index: 2;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link:hover {
  color: #004080;
  transition: color 0.3s;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link:hover::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #004080;
  border-bottom: 2px solid #004080;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 35px;
  transform-origin: center;
  transition: border, right 0.3s;
  z-index: 2;
}
.c-linkbtn .link_btn_inner li .link_btn_inner_link:hover::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link_btn_inner li:last-child {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-linkbtn {
    padding: 0 30px 0;
    margin-bottom: 60px;
  }
  .c-linkbtn .link_btn_inner {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }
  .c-linkbtn .link_btn_inner li {
    margin: 0 auto 30px;
  }
  .c-linkbtn .link_btn_inner li .link_btn_inner_link {
    width: 320px;
    height: 80px;
    display: flex;
    justify-content: cenfter;
    align-items: center;
    border-radius: 10px;
    color: #fff;
    background-color: #004080;
    font-size: 2rem;
    line-height: 1.2;
  }
  .c-linkbtn .link_btn_inner li:last-child {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .c-linkbtn {
    padding: 0 60px 0;
    margin-bottom: 100px;
  }
  .c-linkbtn .link_btn_inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .c-linkbtn .link_btn_inner li {
    margin: 0;
    width: 31%;
  }
  .c-linkbtn .link_btn_inner li .link_btn_inner_link {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .c-linkbtn .link_btn_inner li:last-child {
    margin: 0;
  }
}

.search-input-wrap {
  display: block;
  text-align: center;
  margin: 0 auto 40px;
}
.search-input-wrap #searchform {
  width: auto;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.search-input-wrap #searchform input {
  border: 1px solid #666666;
  height: 50px;
  width: 320px;
  font-size: 1.6rem;
  padding-left: 8px;
  background-color: #fff;
  padding-right: 40px;
}
.search-input-wrap #searchform input[type=submit] {
  background: url(/common/images/icon-search.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 24px;
  border: none;
  height: 24px;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  background-size: contain;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .search-input-wrap {
    display: block;
    text-align: center;
    margin: 0 auto;
    background-color: #004080;
    padding: 0 0 60px;
  }
}

html {
  font-size: 62.5%;
}

main {
  text-align: left;
}
main img {
  max-width: 100%;
  height: auto;
}

h3 {
  margin: 0;
}

.ourworks img {
  width: 100%;
}
.ourworks .firstview__videowrap {
  background: url(../images/ourwork__main.png) no-repeat center center;
  background-size: cover;
  border-radius: 30px;
}
.ourworks .firstview__videowrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}
.ourworks .wrapcontent__massegetitle {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto 10%;
  font-size: 2rem;
  color: #4275d4;
  margin-bottom: 110px;
  text-align: center;
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  .ourworks .wrapcontent__massegetitle {
    font-size: 3.2rem;
    line-height: 1.7em;
  }
}
.ourworks__read {
  margin-bottom: 110px;
}
.ourworks__read.wrapcontent__element {
  width: 90%;
  max-width: 1280px;
  margin: auto auto 110px auto;
  text-align: left;
}
.ourworks__read:last-child {
  margin-bottom: 0;
}
.ourworks__read__title {
  font-size: 2.4rem;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #666666;
}
.ourworks__read__flex {
  line-height: 2em;
}
@media screen and (min-width: 1024px) {
  .ourworks__read__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: start;
    word-break: break-all;
    justify-content: left;
  }
}
.ourworks__read__flex h3 {
  display: block;
  width: 100%;
  color: #4275d4;
  font-size: 3.2rem;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.ourworks__read__flex h3 br {
  display: none;
}
@media screen and (min-width: 1280px) {
  .ourworks__read__flex h3 {
    max-width: 175px;
  }
  .ourworks__read__flex h3 br {
    display: block;
  }
}
.ourworks__read__flex__text {
  word-break: break-all;
}
.ourworks__read__flex__photoarea {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ourworks__read__flex__photoarea {
    max-width: 280px;
  }
}
@media screen and (min-width: 1024px) {
  .ourworks__read__flex__textarea {
    padding: 0 30px;
  }
}
.ourworks__read__flex__textarea .catch {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.ourworks__read__flex__textarea h4 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.ourworks__read__flex__textarea h4 span {
  font-size: 1.6rem;
}
.ourworks__read__flex__textarea .txt {
  line-height: 1.5em;
  margin-bottom: 30px;
}
.ourworks__read__flex__textarea .list-link {
  width: 280px;
  padding: 13px 20px;
  background: #4275d4;
  color: #fff;
  font-size: 1.8rem;
  text-align: left;
  border-radius: 999px;
  display: block;
  line-height: 1em;
  border: 1px solid #4275d4;
}
.ourworks__read__frontread {
  display: block;
  margin-bottom: 50px;
}
.ourworks__read__frontread .ourworks__read__text {
  font-size: 1.6rem;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .ourworks__read__frontread .ourworks__read__text {
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 1024px) {
  .ourworks__read__frontread {
    margin-bottom: 50px;
    font-size: 2.1rem;
  }
}
.ourworks__read__list {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ourworks__read__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.ourworks__read__list__item {
  width: 100%;
}
.ourworks__read__list__item:nth-child(odd) {
  margin-bottom: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid #666666;
}
@media screen and (min-width: 1024px) {
  .ourworks__read__list__item {
    width: 50%;
  }
  .ourworks__read__list__item:nth-child(odd) {
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-right: 30px;
    border-bottom: none;
    border-right: 1px solid #666666;
  }
}
.ourworks__single__list {
  font-size: 1.6rem;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
.ourworks__single__list .front {
  display: block;
}
.ourworks__single__list .front__photo {
  margin-bottom: 10%;
}
.ourworks__single__list .front h3 {
  margin-bottom: 70px;
  font-size: 2.4rem;
  color: #4275d4;
}
.ourworks__single__list .front h3 span {
  font-size: 1.6rem;
  display: inline;
}
@media screen and (min-width: 1024px) {
  .ourworks__single__list .front h3 {
    font-size: 3.2rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .ourworks__single__list .front {
    display: flex;
    justify-content: space-between;
    align-items: start;
    justify-content: left;
    margin-bottom: 100px;
    font-size: 2.1rem;
    align-items: center;
  }
  .ourworks__single__list .front .front__photo {
    margin-right: 45px;
    width: 800px;
    margin-bottom: 0px;
  }
  .ourworks__single__list .front .front__photo img {
    width: 100%;
    height: auto;
  }
}
.ourworks__single__list__flex {
  font-size: 1.4rem;
  line-height: 1.5em;
}
@media screen and (min-width: 1024px) {
  .ourworks__single__list__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: start;
  }
}
.ourworks__single__list__flex__photo {
  width: 100%;
}
.ourworks__single__list__flex__photo img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ourworks__single__list__flex__photo {
    max-width: 800px;
  }
}
.ourworks__single__list__flex__text {
  width: 100%;
  line-height: 1.7em;
}
@media screen and (min-width: 1024px) {
  .ourworks__single__list__flex__text {
    max-width: 400px;
  }
  .ourworks__single__list__flex__text h3 {
    margin-bottom: 70px;
    font-size: 3.2rem;
    color: #4275d4;
  }
}
.ourworks__single__list__flex__text h3 {
  display: block;
  width: 100%;
  max-width: 175px;
  color: #4275d4;
  font-size: 3.2rem;
  margin-bottom: 30px;
}
.ourworks__single__list__flex__text h3 span {
  font-size: 1.6rem;
}
.ourworks__single__list__flex__text .profile span {
  display: block;
}
.ourworks__single__list__item {
  margin-bottom: 100px;
}
.ourworks__single__list__item h3 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #666;
}
.ourworks__single__list__item .front__photo {
  margin-bottom: 5%;
}
@media screen and (min-width: 1024px) {
  .ourworks__single__list__item .front__photo {
    margin-bottom: 0;
    width: 40%;
    max-width: 500px;
  }
}
.ourworks__single__list__item .ourworks__single__list__flex__text {
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  .ourworks__single__list__item .ourworks__single__list__flex__text {
    word-break: break-word;
    width: 58%;
    max-width: 740px;
    font-size: 2.1rem;
    line-height: 1.7em;
  }
}
.ourworks__single__list__item:last-child {
  margin-bottom: 0px;
}
.ourworks__single__list__item .ourworks-single__list__flex {
  word-break: keep-all;
}
.ourworks__single__list__item .ourworks-single__list__flex__photo {
  width: 40%;
  max-width: 500px;
}
.ourworks__single__list__item .ourworks-single__list__flex__text {
  word-break: break-word;
  width: 58%;
  max-width: 740px;
  font-size: 2.1rem;
}
.ourworks__single__list .itemlist .item:nth-child(odd) .ourworks-single-list-flex {
  flex-direction: row-reverse;
}
@media screen and (min-width: 1024px) {
  .ourworks .itemlist .ourworks__single__list__item:nth-child(odd) .ourworks__single__list__flex {
    flex-direction: row-reverse;
  }
}