@charset "UTF-8";
/* style.scss内に記載*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/iwv4psj.css");

/*========================================================================
# reset
========================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  padding: 0;
  margin: 0;
  font-size: 62.5%;
  overflow-X: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 1.6rem;
  font-weight: normal;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

/*========================================================================
# common
========================================================================*/
.section__title {
  font-family: diavlo, sans-serif;
  color: #707070;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .section__title {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .section__title {
    font-size: 3.2rem;
  }
}

.section__sub-title {
  color: #3E81A6;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .section__sub-title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .section__sub-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.is-spl {
  display: none;
}

@media screen and (max-width: 560px) {
  .is-spl {
    display: block;
  }
}

/*========================================================================
# common under-pages
========================================================================*/
.under__section--title {
  color: #707070;
  font-family: diavlo, sans-serif;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .under__section--title {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .under__section--title {
    font-size: 3.2rem;
  }
}

.under__section--subTitle {
  color: #3E81A6;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .under__section--subTitle {
    font-size: 2.4rem;
  }
}

.under__section--subTitle.subQa {
  margin-top: 10px;
}

/*========================================================================
# header
========================================================================*/
.header {
  background-color: #3E81A6;
  height: 80px;
}

@media screen and (max-width: 560px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  max-width: 1280px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  height: 80px;
  align-items: center;
}

@media screen and (max-width: 560px) {
  .header__inner {
    height: 60px;
  }
}

@media screen and (max-width: 560px) {
  .header-logo {
    margin-left: -10px;
  }
}

@media screen and (max-width: 560px) and (max-width: 560px) {
  .header-logo a img {
    width: 196px;
    height: 42px;
  }
}

.header__nav {
  display: flex;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.nav-link {
  text-align: center;
  position: relative;
}

.nav-link:not(:first-child) {
  margin-left: 25px;
}

.nav-link a span {
  color: #fff;
  transition: all 0.3s;
}

.nav-link a span.nav__sub-title {
  font-size: 1.2rem;
  font-family: diavlo, sans-serif;
  display: block;
  margin-top: 9px;
}

.nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: -3px;
  transform: scale(0);
  transition: transform 0.3s;
}

.nav-link:hover::after {
  transform: scale(1);
}

.nav-link:hover a span {
  color: #ffc700;
}

/*========================================================================
# drawer-menu
========================================================================*/
.drawer__icon {
  position: fixed;
  right: 0;
  top: 90px;
  width: 80px;
  height: 80px;
  background-color: #000;
  border-radius: 8px 0 0 8px;
  z-index: 90;
}

@media screen and (max-width: 767px) {
  .drawer__icon {
    width: 50px;
    height: 60px;
  }
}

.drawer__title {
  color: #fff;
  text-align: center;
  font-family: diavlo, sans-serif;
  font-size: 1.2rem;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .drawer__title {
    font-size: 1rem;
  }
}

.drawer__bars {
  width: 30px;
  height: 26px;
  position: relative;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .drawer__bars {
    top: 9px;
  }
}

@media screen and (max-width: 767px) {
  .drawer__bars {
    top: 4px;
  }
}

.drawer__bar1,
.drawer__bar2,
.drawer__bar3 {
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 2px;
  border-radius: 2px;
}

@media screen and (max-width: 767px) {

  .drawer__bar1,
  .drawer__bar2,
  .drawer__bar3 {
    height: 2px;
  }
}

.drawer__bar1 {
  top: 2px;
}

.drawer__bar2 {
  top: 12.5px;
}

.drawer__bar3 {
  top: 22px;
}

.drawer__content {
  width: 320px;
  height: 100%;
  background-color: #000;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 0.3s ease;
  z-index: 100;
}

.drawer__content.is-active {
  transform: translateX(0);
}

.drawer__cross {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.drawer__crossBar1,
.drawer__crossBar2 {
  width: 26px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 11px;
}

.drawer__crossBar1 {
  transform: rotate(45deg);
}

.drawer__crossBar2 {
  transform: rotate(-45deg);
}

.drawer__nav {
  margin-top: 100px;
  text-align: center;
}

.drawer__linkItem {
  color: #fff;
}

.drawer__linkItem:not(:first-child) {
  margin-top: 20px;
}

.drawer-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  display: none;
  z-index: 80;
  top: 0;
  left: 0;
}

.drawer-bg.is-active {
  display: block;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/*========================================================================
# loading
========================================================================*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #3E81A6;
  z-index: 300;
}

#animation {
  margin: 0;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}

#animation p {
  color: #fff;
  margin-top: 30px;
  margin-left: 14px;
}

#animation .load-ball {
  display: block;
  margin-top: 50px;
  margin-left: 52px;
}

/*========================================================================
# fv
========================================================================*/
.fv__image--box {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.fv__img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 650px;
  top: 0;
  left: 0;
  animation: anime 18s 0s infinite;
}

.fv__img:nth-of-type(2) {
  animation-delay: 6s;
}

.fv__img:nth-of-type(3) {
  animation-delay: 12s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }

  17% {
    opacity: 1;
  }

  34% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
  }
}

.fv__copy--box {
  width: 497px;
  max-width: 100%;
  height: 530px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 5px solid #D1D1D1;
  position: absolute;
  top: 138px;
  left: 5.9375vw;
  padding: 75px 64px 37px 51px;
}

@media screen and (max-width: 560px) {
  .fv__copy--box {
    height: 201px;
    width: 182px;
    top: 33%;
    padding: 30px 19px 19px 14px;
  }
}

.fv__copy {
  font-size: 13rem;
  font-family: diavlo, sans-serif;
  color: #D1D1D1;
  font-weight: 400;
}

@media screen and (max-width: 560px) {
  .fv__copy {
    font-size: 4.8rem;
  }
}

/*========================================================================
# service
========================================================================*/
.service {
  position: relative;
}

.service::before {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #4FABA6, #3E81A6);
}

@media screen and (min-width: 768px) {
  .service::before {
    width: 523px;
    height: 417px;
    -webkit-clip-path: polygon(0 0, 87% 0, 100% 100%, 51% 100%);
    clip-path: polygon(0 0, 87% 0, 100% 100%, 51% 100%);
    top: 0;
    right: -70px;
    z-index: -1;
  }
}

@media screen and (max-width: 767px) {
  .service::before {
    width: 384px;
    height: 417px;
    -webkit-clip-path: polygon(0 0, 70% 0, 100% 100%, 65% 100%);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 65% 100%);
    top: -102px;
    right: -154px;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .service__inner {
    padding-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .service__title--wrapper {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .service__title--wrapper {
    margin-top: 102px;
    margin-left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .service__title--wrapper .section__sub-title {
    margin-left: 26px;
  }
}

.service__content--wrapper {
  background-color: #f0f0f0;
}

@media screen and (min-width: 768px) {
  .service__content--wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px 63px;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .service__content--wrapper {
    margin-top: 122px;
    padding-bottom: 24px;
  }
}

.service__category--item {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .service__category--item:not(:nth-child(3n+1)) {
    margin-left: 70px;
    margin-left: 5.4687vw;
  }
}

.service__image {
  max-width: 340px;
  height: 225px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}

.service__image img {
  width: 340px;
  height: 225px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .service__category--item:nth-of-type(2)>.service__image {
    margin-bottom: 2px;
  }
}

@media screen and (max-width: 767px) {
  .service__category--item:nth-of-type(3)>.service__image {
    margin-bottom: 0;
  }
}

.service__textBox {
  background-color: #fff;
  max-width: 340px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 22px 18px 19px 18px;
  margin-left: auto;
  margin-right: auto;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .service__category--item:nth-of-type(1)>.service__textBox {
    margin-top: -4px;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .service__category--item:nth-of-type(2)>.service__textBox {
    margin-bottom: 35px;
  }
}

.service__text--title {
  font-size: 2.4rem;
  text-align: center;
}

.service__text {
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .service__text {
    margin-top: 28px;
  }
}

@media screen and (max-width: 767px) {
  .service__text {
    margin-top: 23px;
  }
}

/*========================================================================
# skill
========================================================================*/
.skill {
  position: relative;
}

@media screen and (min-width: 768px) {
  .skill {
    padding-top: 122px;
  }
}

@media screen and (max-width: 767px) {
  .skill {
    margin-top: 50px;
  }
}

.skill::before {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #4FABA6, #3E81A6);
}

@media screen and (min-width: 768px) {
  .skill::before {
    width: 384px;
    height: 467px;
    top: -50px;
    left: -103px;
    z-index: -1;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 27% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 27% 100%, 0% 100%);
  }
}

@media screen and (max-width: 767px) {
  .skill::before {
    width: 384px;
    height: 417px;
    top: -50px;
    left: -136px;
    z-index: -1;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 35% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 35% 100%, 0% 100%);
  }
}

@media screen and (min-width: 768px) {
  .skill__inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .skill__inner {
    padding: 31px 15px 30px;
  }
}

@media screen and (min-width: 768px) {
  .skill__title--wrapper .section__title {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .skill__title--wrapper .section__title {
    text-align: right;
    margin-right: 31px;
  }
}

@media screen and (min-width: 768px) {
  .skill__icon-wrapper {
    margin-top: 120px;
  }
}

.skill__icons {
  display: flex;
  max-width: 934px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .skill__icons {
    margin-top: 50px;
  }
}

.skill__icon {
  position: relative;
}

@media screen and (min-width: 768px) {
  .skill__icon {
    width: 88px;
    height: 88px;
  }
}

@media screen and (max-width: 767px) {
  .skill__icon {
    width: 40px;
    height: 46px;
  }
}

@media screen and (min-width: 768px) {
  .skill__icon img {
    width: 88px;
    height: 88px;
  }
}

@media screen and (max-width: 767px) {
  .skill__icon img {
    width: 40px;
    height: 46px;
  }
}

.icon-subTitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .icon-subTitle {
    font-size: 2rem;
    bottom: -25px;
  }
}

@media screen and (max-width: 767px) {
  .icon-subTitle {
    bottom: -20px;
    font-size: 1.6rem;
  }
}

/*========================================================================
# works
========================================================================*/
@media screen and (min-width: 768px) {
  .works {
    margin-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .works {
    margin-top: 50px;
  }
}

.works__inner {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .works__inner {
    padding: 0 15px;
  }
}

.works__title--wrapper {
  text-align: center;
}

.works__title--wrapper .section__sub-title {
  text-align: center;
}

.works__content--wrapper {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .works__content--wrapper {
    margin-top: 84px;
    padding: 0 20px;
    max-width: 1140px;
  }
}

@media screen and (max-width: 767px) {
  .works__content--wrapper {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .works__samples {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .works__samples {
    display: block;
  }
}

.works__item {
  position: relative;
  border: 1px solid #000;
  width: 340px;
  max-width: 100%;
}

.works__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  background-color: #182848;
  opacity: 0.8;
  left: 0;
  bottom: 0;
}

@media screen and (min-width: 901px) {
  .works__item {
    width: calc(33.3% - 26.6666666667px);
  }

  .works__item:not(:nth-child(3n+1)) {
    margin-left: 40px;
  }

  .works__item:nth-child(n+4) {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .works__item {
    width: calc(50% - 20px);
  }

  .works__item:not(:nth-child(2n+1)) {
    margin-left: 40px;
  }

  .works__item:nth-child(n+3) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .works__item {
    margin-left: auto;
    margin-right: auto;
  }

  .works__item:nth-of-type(2) {
    margin-top: 57px;
  }

  .works__item:nth-of-type(3) {
    margin-top: 46px;
  }
}

.works__item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
}

.works__btn {
  display: block;
  background-color: #3E81A6;
  color: #fff;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: all 0.5s ease 0s;
}

@media screen and (min-width: 768px) {
  .works__btn {
    width: 340px;
    height: 60px;
    font-size: 2.4rem;
    line-height: 60px;
    margin-top: 87px;
    margin-bottom: 50px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 767px) {
  .works__btn {
    width: 300px;
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 30px;
  }
}

.works__btn::after {
  position: absolute;
  content: "";
  background-image: url(/assets/img/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}

@media screen and (min-width: 768px) {
  .works__btn::after {
    right: 27px;
    width: 50px;
    height: 42px;
  }
}

@media screen and (max-width: 767px) {
  .works__btn::after {
    right: 25px;
    width: 45px;
    height: 38px;
  }
}

.works__btn:hover {
  background-color: #F2B95B;
}

.works__btn:hover::after {
  right: 20px;
}

@media screen and (min-width: 1700px) {
  .swiper {
    padding-top: 120px;
  }
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.works__slide--item {
  height: 325px;
  display: flex;
  align-items: flex-end;
}

.works__slide--item img {
  -o-object-fit: contain;
  object-fit: contain;
}

/*========================================================================
# process
========================================================================*/
.process {
  position: relative;
}

@media screen and (min-width: 768px) {
  .process {
    margin-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .process {
    margin-top: 83px;
  }
}

.process::before {
  position: absolute;
  content: "";
  width: 640px;
  height: 1309px;
  background: linear-gradient(to bottom, #4FABA6, #3E81A6);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 45%);
  clip-path: polygon(0 0, 0% 100%, 100% 45%);
  left: 0;
  top: 56px;
}

@media screen and (min-width: 768px) {
  .process::before {
    width: 640px;
    height: 1309px;
    top: 56px;
  }
}

@media screen and (max-width: 767px) {
  .process::before {
    width: 640px;
    height: 840px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 60% 45%);
    clip-path: polygon(0 0, 0% 100%, 60% 45%);
  }
}

.process__inner {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.process__title--wrapper {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .process__content--wrapper {
    margin-top: 86px;
  }
}

@media screen and (max-width: 767px) {
  .process__content--wrapper {
    margin-top: 80px;
  }
}

.process__item {
  position: relative;
  display: flex;
  max-width: 1134px;
  justify-content: space-between;
}

.process__item::before {
  position: absolute;
  content: "";
  width: 1134px;
  height: 209px;
  width: 100%;
  background-color: #f0f0f0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 11% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 11% 100%);
  margin-left: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1030px) {
  .process__item::before {
    height: 275px;
  }
}

@media screen and (max-width: 767px) {
  .process__item::before {
    margin-left: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  }
}

@media screen and (max-width: 560px) {
  .process__item::before {
    height: 225px;
  }
}

@media screen and (min-width: 768px) {

  .process__item:nth-of-type(2),
  .process__item:nth-of-type(4) {
    margin-top: 100px;
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {

  .process__item:nth-of-type(2),
  .process__item:nth-of-type(4) {
    margin-top: 100px;
  }
}

@media screen and (max-width: 560px) {

  .process__item:nth-of-type(2),
  .process__item:nth-of-type(4) {
    margin-top: 120px;
  }
}

@media screen and (max-width: 374px) {

  .process__item:nth-of-type(2),
  .process__item:nth-of-type(4) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {

  .process__item:nth-of-type(2)::before,
  .process__item:nth-of-type(4)::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
    margin-left: -20px;
  }
}

@media screen and (max-width: 767px) {

  .process__item:nth-of-type(2)::before,
  .process__item:nth-of-type(4)::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
  }
}

@media screen and (min-width: 768px) {
  .process__item:nth-of-type(3) {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .process__item:nth-of-type(3) {
    margin-top: 100px;
  }
}

@media screen and (max-width: 560px) {
  .process__item:nth-of-type(3) {
    margin-top: 120px;
  }
}

@media screen and (max-width: 374px) {
  .process__item:nth-of-type(3) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .process__item:nth-of-type(4) {
    margin-top: 84px;
  }
}

@media screen and (max-width: 767px) {
  .process__item:nth-of-type(4) {
    margin-top: 123px;
  }
}

@media screen and (min-width: 561px) and (max-width: 665px) {
  .process__item:nth-of-type(4) {
    margin-top: 100px;
  }
}

@media screen and (max-width: 560px) {
  .process__item:nth-of-type(4) {
    margin-top: 120px;
  }
}

@media screen and (max-width: 374px) {
  .process__item:nth-of-type(4) {
    margin-top: 80px;
  }
}

.process__item--left {
  flex: 0 1 690px;
}

@media screen and (min-width: 768px) {
  .process__item--left {
    padding-left: 152px;
    padding-top: 37px;
  }
}

@media screen and (max-width: 767px) {
  .process__item--left {
    padding-top: 33px;
    padding-left: 9.0625vw;
    padding-right: 15px;
  }
}

@media screen and (max-width: 560px) {
  .process__item--left {
    padding-left: 11.0625vw;
  }
}

@media screen and (min-width: 768px) {

  .process__item:nth-of-type(2)>.process__item--left,
  .process__item:nth-of-type(4)>.process__item--left {
    padding-right: 112px;
    padding-left: 8px;
    margin-top: -2px;
    margin-right: 38px;
  }
}

@media screen and (max-width: 767px) {

  .process__item:nth-of-type(2)>.process__item--left,
  .process__item:nth-of-type(4)>.process__item--left {
    padding-top: 33px;
    padding-right: 9.0625vw;
    padding-left: 15px;
  }
}

@media screen and (max-width: 560px) {

  .process__item:nth-of-type(2)>.process__item--left,
  .process__item:nth-of-type(4)>.process__item--left {
    padding-right: 11.0625vw;
  }
}

.process__item--texts {
  display: flex;
}

.process__item:nth-of-type(2)>.process__item--left>.process__text--wrapper>.process__item--texts,
.process__item:nth-of-type(4)>.process__item--left>.process__text--wrapper>.process__item--texts {
  justify-content: end;
}

@media screen and (min-width: 768px) {

  .process__item:nth-of-type(2)>.process__item--left>.process__text--wrapper>.process__item--texts,
  .process__item:nth-of-type(4)>.process__item--left>.process__text--wrapper>.process__item--texts {
    margin-right: -3px;
  }
}

.process__item--title {
  color: #3E81A6;
  font-weight: 500;
  font-family: diavlo, sans-serif;
}

@media screen and (min-width: 768px) {
  .process__item--title {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 767px) {
  .process__item--title {
    font-size: 2.4rem;
  }
}

.process__item__subTitle {
  color: #707070;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .process__item__subTitle {
    font-size: 3.6rem;
    margin-left: 23px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .process__item__subTitle {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .process__item__subTitle {
    font-size: 1.8rem;
    margin-left: 8px;
  }
}

@media screen and (min-width: 768px) {
  .process__text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .process__text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 24px;
  }
}

.process__item--right {
  position: relative;
  flex: 0 1 444px;
}

@media screen and (max-width: 767px) {
  .process__item--right {
    flex: 0 1 1px;
  }
}

@media screen and (min-width: 768px) {
  .process__item--right img {
    position: relative;
    width: 300px;
    height: 250px;
    top: 23px;
    right: -7.8125vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .process__item--right img {
    width: 250px;
    height: 208px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1030px) {
  .process__item--right img {
    right: -0.8125vw;
  }
}

@media screen and (max-width: 767px) {
  .process__item--right img {
    position: absolute;
    min-width: 130px;
    min-height: 114px;
    top: -49px;
    right: 23px;
  }
}

@media screen and (max-width: 374px) {
  .process__item--right img {
    right: 10px;
    min-width: 91px;
    min-height: 80px;
    top: -25px;
  }
}

@media screen and (min-width: 768px) {

  .process__item:nth-of-type(2)>.process__item--right>img,
  .process__item:nth-of-type(4)>.process__item--right>img {
    top: 17px;
    left: 3.125vw;
  }
}

@media screen and (max-width: 767px) {

  .process__item:nth-of-type(2)>.process__item--right>img,
  .process__item:nth-of-type(4)>.process__item--right>img {
    top: -70px;
    left: 23px;
  }
}

@media screen and (max-width: 374px) {

  .process__item:nth-of-type(2)>.process__item--right>img,
  .process__item:nth-of-type(4)>.process__item--right>img {
    top: -25px;
  }
}

@media screen and (min-width: 768px) {
  .process__item:nth-of-type(3)>.process__item--right>img {
    top: 0;
    right: -7.8125vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1030px) {
  .process__item:nth-of-type(3)>.process__item--right>img {
    right: -0.8125vw;
  }
}

/*========================================================================
# video
========================================================================*/
.video {
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  width: 560px;
  max-width: 100%;
}

.video__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*========================================================================
# footer
========================================================================*/
.footer {
  background-color: #3E81A6;
}

@media screen and (min-width: 768px) {
  .footer {
    margin-top: 120px;
    height: 153px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    margin-top: 120px;
    height: 97px;
  }
}

.footer__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
    padding: 0 15px 5px;
  }
}

@media screen and (max-width: 560px) {
  .footer__inner {
    padding: 0 5px 5px;
  }
}

@media screen and (min-width: 768px) {
  .footer__left {
    display: flex;
    align-items: center;
  }
}

.footer__log {
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer__log {
    margin-left: -9px;
  }
}

@media screen and (max-width: 560px) {
  .footer__log {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .footer__log a img {
    width: 280px;
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .footer__log a img {
    width: 196px;
    height: 42px;
  }
}

@media screen and (min-width: 768px) {
  .footer__right {
    padding-top: 20px;
  }
}

.footer__nav {
  display: flex;
}

@media screen and (min-width: 768px) {
  .footer__nav {
    margin-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .footer__nav {
    justify-content: end;
    margin-right: 5px;
    margin-top: 8px;
  }
}

@media screen and (max-width: 560px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav--item {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .footer__nav--item {
    font-weight: 500;
    text-align: center;
  }

  .footer__nav--item:not(:first-child) {
    margin-left: 25px;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav--item {
    font-size: 1.4rem;
    font-weight: 400;
  }

  .footer__nav--item:not(:first-child) {
    margin-left: 10px;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav--subTitle {
    font-family: diavlo, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 10px;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav--subTitle {
    display: none;
  }
}

.copyright {
  color: #fff;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .copyright {
    text-align: right;
    margin-right: 35px;
    margin-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  .copyright {
    text-align: right;
    margin-top: 7px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 560px) {
  .copyright {
    margin-top: 25px;
    text-align: center;
  }
}

.top__btn {
  position: fixed;
  transform: rotate(-90deg);
  z-index: 50;
}

@media screen and (min-width: 768px) {
  .top__btn {
    width: 60px;
    height: 60px;
    right: 5px;
    bottom: 160px;
  }
}

@media screen and (max-width: 767px) {
  .top__btn {
    width: 30px;
    height: 30px;
    right: 5px;
    bottom: 120px;
  }
}

/*========================================================================
# fvUnder
========================================================================*/
.fvUnder {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 300px;
}

.fvUnder.is-works {
  background-image: url(/assets/img/works-header.jpg);
}

.fvUnder.is-price {
  background-image: url(/assets/img/price-header.jpg);
}

.fvUnder.is-profile {
  background-image: url(/assets/img/profile-header.jpg);
}

.fvUnder.is-contact {
  background-image: url(/assets/img/contact-header.jpg);
}

.fvUnder__copy--wrapper {
  text-align: center;
  padding-top: 107px;
}

.fvUnder__copy {
  color: #fff;
  font-family: diavlo, sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .fvUnder__copy {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .fvUnder__copy {
    font-size: 4.8rem;
  }
}

.fvUnder__subTitle {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .fvUnder__subTitle {
    font-size: 2.4rem;
  }
}

/*========================================================================
# breadcrumb
========================================================================*/
.breadcrumb {
  list-style: none;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 0 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0 10px;
    margin-top: 15px;
  }
}

.breadcrumb li {
  list-style: none;
  display: inline;
}

.breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li {
  color: #707070;
}

.breadcrumb li a {
  color: #3E81A6;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/*========================================================================
# Works-page
========================================================================*/
@media screen and (min-width: 768px) {
  .underWorks {
    margin-top: 85px;
  }
}

@media screen and (max-width: 767px) {
  .underWorks {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .underWorks__inner {
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .underWorks__inner {
    padding: 0 15px;
  }
}

.underWorks__title--wrapper {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .under__section--text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 88px;
  }
}

@media screen and (max-width: 767px) {
  .under__section--text {
    margin-top: 60px;
    line-height: 1.5;
  }
}

/*========================================================================
# samples
========================================================================*/
@media screen and (min-width: 901px) {
  .samples {
    margin-top: 158px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .samples {
    margin-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .samples {
    margin-top: 80px;
  }
}

.samples__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .samples__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .samples__inner {
    padding: 0 15px;
  }
}

@media screen and (min-width: 901px) {
  .sample__item {
    display: flex;
  }
}

@media screen and (max-width: 900px) {
  .sample__item {
    display: block;
  }
}

@media screen and (min-width: 901px) {
  .sample__image--wrapper {
    flex: 0 1 600px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .sample__image--wrapper {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {
  .sample__image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 901px) {
  .sample__content {
    flex: 0 1 600px;
  }
}

@media screen and (min-width: 901px) and (max-width: 1240px) {
  .sample__content {
    margin-top: -50px;
  }
}

@media screen and (min-width: 768px) {
  .sample__content {
    padding: 56px 20px 50px 38px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .sample__content {
    padding: 56px 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .sample__content {
    padding: 56px 15px 50px 15px;
  }
}

@media screen and (max-width: 900px) {
  .sample__title--wrapper {
    text-align: center;
  }
}

.sample__title {
  font-weight: 500;
  color: #3E81A6;
}

@media screen and (min-width: 768px) {
  .sample__title {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  .sample__title {
    font-size: 2.8rem;
  }
}

.sample__title--description {
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .sample__title--description {
    font-size: 1.8rem;
  }
}

.sample__detail {
  text-align: left;
}

@media screen and (max-width: 900px) {
  .sample__detail {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .sample__detail {
    margin-top: 27px;
  }
}

@media screen and (max-width: 767px) {
  .sample__detail {
    margin-top: 27px;
  }
}

.table__menu {
  line-height: 1.5;
  width: 98px;
  padding: 3px 0;
}

@media screen and (max-width: 560px) {
  .table__menu {
    width: 75px;
  }
}

.table__desc {
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .table__desc {
    padding: 3px 0;
  }
}

.table__desc a {
  color: #3E81A6;
}

@media screen and (min-width: 901px) {
  .sample__item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 901px) {
  .sample__item:nth-of-type(even) {
    margin-top: 77px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .sample__item:nth-of-type(even) {
    margin-top: 77px;
  }
}

@media screen and (min-width: 768px) {
  .sample__item:nth-of-type(even)>.sample__content {
    padding: 40px 20px 50px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .sample__item:nth-of-type(even)>.sample__content {
    padding: 40px 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .sample__item:nth-of-type(even)>.sample__content {
    padding: 40px 0 50px 0;
  }
}

@media screen and (min-width: 901px) {
  .sample__item:nth-of-type(odd) {
    margin-top: 51px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .sample__item:nth-of-type(odd) {
    margin-top: 55px;
  }
}

@media screen and (min-width: 768px) {
  .sample__item:nth-of-type(odd)>.sample__content {
    padding: 40px 20px 50px 29px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .sample__item:nth-of-type(odd)>.sample__content {
    padding: 40px 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .sample__item:nth-of-type(odd)>.sample__content {
    padding: 40px 0 50px 0;
  }
}

/*========================================================================
# price-page
========================================================================*/
.price__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
}

@media screen and (min-width: 768px) {
  .price__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .price__inner {
    padding: 0 15px;
  }
}

.underPrice__title--wrapper {
  margin-top: 86px;
}

.price__scroll {
  overflow-x: scroll;
}

.price__chart--wrapper {
  margin-left: auto;
  margin-right: auto;
  margin-top: 87px;
}

@media screen and (min-width: 768px) {
  .price__chart--wrapper {
    width: 1000px;
  }
}

@media screen and (max-width: 767px) {
  .price__chart--wrapper {
    width: 850px;
  }
}

.price__tab {
  display: flex;
}

.tab__item {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to bottom, #4FABA6, #3E81A6);
  text-align: center;
}

.tab__item:not(:first-child) {
  margin-left: 5px;
}

@media screen and (min-width: 768px) {
  .tab__item {
    font-size: 3.6rem;
    width: 280px;
    height: 80px;
    border-radius: 20px 20px 0 0;
    line-height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .tab__item {
    width: 120px;
    height: 40px;
    border-radius: 10px 10px 0 0;
    line-height: 40px;
  }
}

.tab__item.is-current {
  background: #F2B95B;
}

.tab__item:hover {
  cursor: pointer;
}

.price__chart {
  display: none;
}

@media screen and (min-width: 768px) {
  .price__chart {
    border: 10px solid #3E81A6;
    border-radius: 0 20px 20px 20px;
  }
}

@media screen and (max-width: 767px) {
  .price__chart {
    border: 5px solid #3E81A6;
    border-radius: 0 20px 20px 20px;
  }
}

.price__chart.is-current {
  display: block;
}

@media screen and (min-width: 768px) {
  .price__box {
    padding: 38px 33px 39px 33px;
  }
}

@media screen and (max-width: 767px) {
  .price__box {
    padding: 25px 20px 39px 20px;
  }
}

.price__menu--items {
  display: flex;
  border-bottom: 2px solid #707070;
  padding-bottom: 8px;
  padding-top: 38px;
  align-items: flex-end;
}

.price__menu--items:nth-of-type(1) {
  padding-top: 22px;
}

.price__menu--items:nth-of-type(2) {
  padding-top: 30px;
}

.price__menu--items:nth-of-type(3) {
  padding-top: 28px;
}

.price__menu--items:nth-of-type(4) {
  padding-top: 28px;
}

.price__menu--items:nth-of-type(5) {
  padding-top: 28px;
}

.price__menu--items:nth-of-type(6) {
  padding-top: 28px;
}

.menu__item {
  line-height: 1.5;
  font-weight: 700;
  padding-left: 8px;
}

@media screen and (min-width: 768px) {
  .menu__item {
    font-size: 3rem;
    flex: 0 0 320px;
  }
}

@media screen and (max-width: 767px) {
  .menu__item {
    font-size: 2rem;
    flex: 0 0 235px;
  }
}

.menu__item-special {
  flex: 0 0 800px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 8px;
}

@media screen and (min-width: 768px) {
  .menu__item-special {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .menu__item-special {
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .menu__price {
    font-size: 3rem;
    padding-left: 13px;
    padding-bottom: 6px;
  }
}

@media screen and (max-width: 767px) {
  .menu__price {
    font-size: 2rem;
    padding-left: 10px;
    padding-bottom: 4px;
  }
}

@media screen and (min-width: 768px) {
  .menu__price.price-s {
    padding-left: 29px;
  }
}

@media screen and (max-width: 767px) {
  .menu__price.price-s {
    padding-left: 20px;
  }
}

.menu__price.price-ss {
  padding-left: 15px;
}

.menu__price.price-l {
  margin-left: -1px;
  padding-left: 0;
}

.menu__price.price-adjust {
  display: none;
}

.menu__remarks {
  padding-left: 24px;
  line-height: 1.5;
}

.price__remarks {
  margin-top: 30px;
}

.price__remarks p:not(:first-child) {
  margin-top: 39px;
}

@media screen and (min-width: 768px) {
  .price__remarks {
    font-size: 2rem;
  }
}

/*========================================================================
# qa
========================================================================*/
.qa__inner {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .qa__inner {
    padding: 132px 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .qa__inner {
    padding: 90px 15px 0;
  }
}

.qa__title--wrapper {
  text-align: center;
}

.qa__content {
  background-image: url(/assets/img/price-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 916px;
}

@media screen and (min-width: 768px) {
  .qa__content {
    margin-top: 160px;
  }
}

@media screen and (max-width: 767px) {
  .qa__content {
    margin-top: 100px;
  }
}

.qa__items {
  padding-top: 80px;
}

@media screen and (max-width: 374px) {
  .qa__items {
    padding-top: 25px;
  }
}

.qa__item {
  max-width: 600px;
}

@media screen and (min-width: 768px) {
  .qa__item {
    margin-right: 60px;
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .qa__item {
    margin-left: auto;
    margin-right: auto;
  }
}

.qa__item:not(:first-of-type) {
  margin-top: 30px;
}

.qa__question {
  position: relative;
  border-radius: 4px 4px 0 0;
  border: 1px solid #3E81A6;
  background-color: #fff;
  padding-top: 23px;
  padding-bottom: 23px;
}

.question__text {
  position: relative;
  font-weight: 700;
  line-height: 1.5;
  margin-left: 70px;
}

@media screen and (max-width: 560px) {
  .question__text {
    margin-left: 40px;
  }
}

.question__text::before {
  position: absolute;
  content: "Q";
  font-size: 3.2rem;
  font-weight: 700;
  font-family: diavlo, sans-serif;
  color: #305D9F;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}

@media screen and (max-width: 560px) {
  .question__text::before {
    left: -32px;
  }
}

.qa__icon {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.qa__icon.is-open .qa__icon--bar2 {
  transform: rotate(90deg);
}

.qa__icon--bar1,
.qa__icon--bar2 {
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: #3E81A6;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: transform 0.3s;
}

@media screen and (max-width: 500px) {

  .qa__icon--bar1,
  .qa__icon--bar2 {
    display: none;
  }
}

.qa__answer {
  background-color: #CEE3FF;
  border-radius: 0 0 4px 4px;
  border: 1px solid #707070;
  padding: 16px 20px 19px 70px;
}

@media screen and (max-width: 560px) {
  .qa__answer {
    padding: 16px 15px 19px 39px;
  }
}

.qa__item:nth-of-type(2)>.qa__answer {
  display: none;
}

.answer__text {
  position: relative;
  line-height: 2;
}

.answer__text::before {
  position: absolute;
  content: "A";
  font-size: 3.2rem;
  color: #707070;
  font-weight: 700;
  font-family: diavlo, sans-serif;
  top: -12px;
  left: -50px;
}

@media screen and (max-width: 560px) {
  .answer__text::before {
    left: -31px;
  }
}

/*========================================================================
# contact-page
========================================================================*/
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 0 15px;
  }
}

.underContact__title--wrapper {
  margin-top: 86px;
}

.contact__form {
  max-width: 1000px;
  border: 3px solid #3E81A6;
  border-radius: 20px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 901px) {
  .contact__form--inner {
    padding: 80px 136px 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .contact__form--inner {
    padding: 80px 40px 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact__form--inner {
    padding: 80px 10px 20px;
  }
}

@media screen and (max-width: 560px) {
  .contact__form--inner {
    padding: 50px 10px 20px;
  }
}

@media screen and (min-width: 901px) {
  .contact__form--row {
    display: flex;
    align-items: center;
  }
}

.contact__form--row:not(:first-of-type) {
  margin-top: 60px;
}

.contact__form--row:nth-of-type(2) {
  margin-top: 25px;
}

.input__label {
  flex: 0 0 208px;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 767px) {
  .input__label {
    font-weight: 400;
  }
}

.contact__form--row>.input__label .is-required::after {
  position: absolute;
  content: "必須";
  width: 40px;
  height: 16px;
  background-color: #FF4646;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 70%;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .contact__form--row>.input__label .is-required::after {
    left: 21%;
  }
}

@media screen and (max-width: 767px) {
  .contact__form--row>.input__label .is-required::after {
    left: 150px;
  }
}

.contact__input {
  color: #707070;
  width: calc(100% - 208px);
}

.contact__input:hover [type=text],
.contact__input:hover [type=email] {
  border-bottom: 1px solid #4973FF;
  box-shadow: 0 10px 10px -5px rgba(62, 62, 62, 0.2);
}

@media screen and (max-width: 900px) {
  .contact__input {
    width: 100%;
  }
}

[type=text],
[type=email] {
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  width: 100%;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 900px) {

  [type=text],
  [type=email] {
    margin-top: 10px;
  }
}

.contact__remarks--wrapper {
  max-width: 510px;
  line-height: 1.5;
}

@media screen and (min-width: 901px) {
  .contact__remarks--wrapper {
    margin-left: 208px;
  }
}

@media screen and (max-width: 900px) {
  .contact__remarks--wrapper {
    margin-left: 0;
  }
}

.contact__remarks {
  font-size: 1.2rem;
  color: #FF0000;
  margin-top: 9px;
}

.contact__remarks span {
  color: #3E81A6;
}

[type=radio] {
  display: none;
}

@media screen and (max-width: 900px) {
  .contact__radio--box {
    margin-top: 15px;
  }
}

.contact__radio {
  display: flex;
}

@media screen and (max-width: 374px) {
  .contact__radio {
    display: block;
  }
}

span.radio {
  margin-left: 25px;
  position: relative;
}

span.radio::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #4973FF;
  border-radius: 50%;
  top: 20%;
  left: -20px;
}

@media screen and (max-width: 374px) {
  span.radio::before {
    top: 7%;
  }
}

span.radio::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #4973FF;
  border-radius: 50%;
  top: 32%;
  left: -17px;
  display: none;
}

@media screen and (max-width: 374px) {
  span.radio::after {
    top: 26%;
  }
}

span.radio:hover::before {
  border-color: #4973ff;
  box-shadow: 0 0 4px #4973ff;
}

@media screen and (max-width: 374px) {
  span.radio {
    display: block;
  }

  span.radio:not(:first-child) {
    margin-top: 10px;
  }
}

[type=radio]:checked+span::after {
  display: block;
}

select {
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  width: 240px;
  height: 40px;
  padding-left: 25px;
  background-image: url(/assets/img/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 17px 14px;
}

@media screen and (max-width: 900px) {
  select {
    margin-top: 15px;
  }
}

textarea {
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  width: 100%;
  height: 200px;
}

textarea:hover {
  border: 1px solid #4973FF;
  box-shadow: 0 0 5px 3px rgba(62, 62, 62, 0.2);
}

@media screen and (max-width: 900px) {
  textarea {
    margin-top: 15px;
  }
}

.contact-form__check {
  position: relative;
  margin-top: 20px;
  margin-left: 238px;
}

.contact-form__check [type=checkbox] {
  display: none;
}

@media screen and (max-width: 900px) {
  .contact-form__check {
    margin-left: 30px;
  }
}

.contact-form__check span a {
  color: #3E81A6;
  text-decoration: underline;
}

.contact-form__check span {
  line-height: 1.5;
}

@media screen and (max-width: 374px) {
  .contact-form__check span {
    font-size: 1.4rem;
  }
}

.contact-form__check span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  top: 46%;
  transform: translateY(-50%);
  left: -30px;
}

.contact-form__check span::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 10px;
  box-sizing: border-box;
  transform: rotate(-45deg);
  transform-origin: left top;
  top: 10px;
  left: -29px;
}

.contact-form__check span:hover::before {
  border: 1px solid #4973FF;
  box-shadow: 0 0 4px #4973ff;
}

[type=checkbox]:checked+span::after {
  border-left: solid 2px #3E81A6;
  border-bottom: solid 2px #3E81A6;
  animation-name: check;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes check {
  0% {
    width: 0;
    height: 0;
  }

  30% {
    width: 0;
    height: 10px;
  }

  100% {
    width: 17px;
    height: 10px;
  }
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.contact__form--btn {
  display: block;
  margin-top: 25px;
  text-align: center;
}

[type=submit] {
  display: block;
  width: 200px;
  height: 70px;
  line-height: 70px;
  border-radius: 8px;
  background-color: #b2b2b2;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease 0s;
  border: none;
}

[type=submit].-active {
  background-color: #F2B95B;
}

.change__color {
  font-size: 1.4rem;
  text-align: center;
  color: #FF0000;
  margin-top: 20px;
  line-height: 1.5;
}

.contact__btn--text {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.message__complete {
  text-align: center;
  margin-top: 50px;
}

.end-message {
  font-size: 2rem;
  color: #4973ff;
  line-height: 1.5;
  display: none;
}

.false-message {
  color: #FF0000;
  margin-top: 20px;
  font-size: 2rem;
  display: none;
}

/*========================================================================
# policy__modal
========================================================================*/
.policy__modal {
  width: 900px;
  max-width: calc(100% - 48px);
  height: 652px;
  max-height: calc(100% - 48px);
  background-color: #fff;
  z-index: 120;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 60px;
}

@media screen and (max-width: 767px) {
  .policy__modal {
    padding: 40px 30px 60px 30px;
  }
}

@media screen and (max-width: 374px) {
  .policy__modal {
    padding: 40px 15px 60px 15px;
  }
}

.policy__title {
  position: relative;
  font-size: 2.4rem;
  color: #707070;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 500;
}

.policy__title::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #3E81A6;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.policy__content--wrapper {
  height: calc(100% - 146px - 10px);
  overflow: auto;
}

.policy__content:not(:first-of-type) {
  margin-top: 50px;
}

.content__item {
  position: relative;
  font-size: 2rem;
  color: #707070;
  font-weight: 500;
  margin-left: 20px;
  line-height: 1.5;
}

.content__item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 20px;
  background-color: #3E81A6;
  top: 0;
  left: -20px;
}

.content__text {
  margin-top: 30px;
  color: #707070;
  margin-left: 20px;
  line-height: 1.5;
}

.policy__modal--btn {
  width: 175px;
  height: 55px;
  background-color: #3E81A6;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 55px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.policy__modal--btn a {
  padding: 15px 55px;
}

.modal__close--icon {
  position: absolute;
  top: -20px;
  right: -20px;
}

.modal__close--icon img {
  width: 40px;
  height: 40px;
}

.policy__modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 110;
  display: none;
}

.policy__modal-bg.is-open {
  display: block;
}

/*========================================================================
# Works-page
========================================================================*/
@media screen and (min-width: 768px) {
  .underWorks {
    margin-top: 85px;
  }
}

@media screen and (max-width: 767px) {
  .underWorks {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .underWorks__inner {
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .underWorks__inner {
    padding: 0 15px;
  }
}

.underWorks__title--wrapper {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.under__section--text-profilr {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .under__section--text-profilr {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 88px;
  }
}

@media screen and (max-width: 767px) {
  .under__section--text-profilr {
    margin-top: 60px;
    line-height: 1.5;
  }
}

/*========================================================================
# profile-items
========================================================================*/
@media screen and (min-width: 901px) {
  .profile {
    margin-top: 158px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile {
    margin-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .profile {
    margin-top: 80px;
  }
}

.profile__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .profile__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile__inner {
    padding: 0 15px;
  }
}

@media screen and (min-width: 901px) {
  .profile__item {
    display: flex;
  }
}

@media screen and (max-width: 900px) {
  .profile__item {
    display: block;
  }
}

@media screen and (min-width: 901px) {
  .profile__image--wrapper {
    flex: 0 1 600px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile__image--wrapper {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {
  .profile__image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 901px) {
  .profile__content {
    flex: 0 1 600px;
  }
}

@media screen and (min-width: 901px) and (max-width: 1240px) {
  .profile__content {
    margin-top: -50px;
  }
}

@media screen and (min-width: 768px) {
  .profile__content {
    padding: 56px 20px 50px 38px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile__content {
    padding: 56px 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile__content {
    padding: 56px 15px 50px 15px;
  }
}

@media screen and (max-width: 900px) {
  .profile__title--wrapper {
    text-align: center;
  }
}

.profile__title--profile {
  font-weight: 500;
  color: #ff1493;
}

@media screen and (min-width: 768px) {
  .profile__title--profile {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .profile__title--profile {
    font-size: 2.4rem;
  }
}

.profile__detail {
  text-align: left;
}

@media screen and (max-width: 900px) {
  .profile__detail {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .profile__detail {
    margin-top: 27px;
  }
}

@media screen and (max-width: 767px) {
  .profile__detail {
    margin-top: 27px;
  }
}

.profile__detail p {
  line-height: 1.5;
}

@media screen and (min-width: 901px) {
  .profile__item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 901px) {
  .profile__item:nth-of-type(even) {
    margin-top: 77px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile__item:nth-of-type(even) {
    margin-top: 77px;
  }
}

@media screen and (min-width: 768px) {
  .profile__item:nth-of-type(even)>.profile__content {
    padding: 40px 20px 50px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile__item:nth-of-type(even)>.profile__content {
    padding: 40px 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile__item:nth-of-type(even)>.profile__content {
    padding: 40px 0 50px 0;
  }
}

@media screen and (min-width: 901px) {
  .profile__item:nth-of-type(odd) {
    margin-top: 51px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile__item:nth-of-type(odd) {
    margin-top: 55px;
  }
}

@media screen and (min-width: 768px) {
  .profile__item:nth-of-type(odd)>.profile__content {
    padding: 40px 20px 50px 29px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile__item:nth-of-type(odd)>.profile__content {
    padding: 40px 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile__item:nth-of-type(odd)>.profile__content {
    padding: 40px 0 50px 0;
  }
}

/*========================================================================
# profile-point
========================================================================*/
@media screen and (min-width: 901px) {
  .profile-point {
    margin-top: 158px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile-point {
    margin-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .profile-point {
    margin-top: 80px;
  }
}

.profile-point__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .profile-point__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile-point__inner {
    padding: 0 15px;
  }
}

@media screen and (min-width: 901px) {
  .profile-point__item {
    display: flex;
  }
}

@media screen and (max-width: 900px) {
  .profile-point__item {
    display: block;
  }
}

@media screen and (min-width: 901px) {
  .profile-point__image--wrapper {
    flex: 0 1 600px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile-point__image--wrapper {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 900px) {
  .profile-point__image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 901px) {
  .profile-point__content {
    flex: 0 1 600px;
  }
}

@media screen and (min-width: 901px) and (max-width: 1240px) {
  .profile-point__content {
    margin-top: -50px;
  }
}

@media screen and (min-width: 768px) {
  .profile-point__content {
    padding: 0 20px 50px 38px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .profile-point__content {
    padding: 0 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile-point__content {
    padding: 0 15px 50px 15px;
  }
}

@media screen and (max-width: 900px) {
  .profile-point__title--wrapper {
    text-align: center;
  }
}

.profile-point__title--profile {
  font-weight: 500;
  color: #ff1493;
}

@media screen and (min-width: 768px) {
  .profile-point__title--profile {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .profile-point__title--profile {
    font-size: 2.4rem;
  }
}

.profile-point__detail {
  text-align: left;
}

@media screen and (max-width: 900px) {
  .profile-point__detail {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .profile-point__detail {
    margin-top: 27px;
  }
}

@media screen and (max-width: 767px) {
  .profile-point__detail {
    margin-top: 27px;
  }
}

.profile-point__detail p {
  line-height: 1.5;
  margin-bottom: 10px;
}

.profile-point__detail em {
  margin-right: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}

.u-text-marker {
  background: linear-gradient(transparent 60%, #FFF799 60%);
}

/*========================================================================
# color
========================================================================*/