/* Scss Document */
@import url('https://fonts.googleapis.com/css2?family=Barlow&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap');*/
html, body {
  -webkit-text-size-adjust: 100%;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-weight: 400;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", YuGothic, "Yu Gothic medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #414356;
  letter-spacing: 0.05em;
}
input, select, button, textarea {
  font-family: inherit;
}
a {
  text-decoration: none;
  color: #414356;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8000;
  background-color: rgba(255, 255, 255, 0.9);
  height: 90px;
}
header .inner {
  padding-left: 30px;
  padding-right: 40px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner #logo {
  width: 130px;
  height: auto;
}
#gnav ul {
  display: flex;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
#gnav ul li {
  margin-right: 4em;
}
#gnav ul li:last-child {
  margin-right: 0;
}
#gnav ul li a {
  color: #414356;
  transition: 0.3s;
}
#gnav ul li a:hover {
  color: #3084b5;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  #gnav ul li {
    margin-right: 3rem;
  }
}
/*==========================
*スマホナビ*
===========================*/
#gnav_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
  header {
    position: fixed;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 14px;
  }
  header .inner {
    padding: 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .inner #logo {
    width: 96px;
    height: 25px;
    margin-left: 5px;
  }
  header .inner #logo img {
    width: 100%;
    height: auto;
  }
  #logo a {
    display: block;
    width: 100%;
    height: auto;
  }
  #gnav {
    display: none;
  }
  #gnav_sp {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #ffffff;
    display: block;
  }
  #gnav_sp a {
    text-decoration: none;
    color: #ffffff;
  }
  #gnav_sp .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    transition: opacity .5s;
  }
  #gnav_sp .overlay.open {
    width: 100%;
    opacity: 1;
    height: 100vh;
  }
  #gnav_sp .menu-trigger {
    display: inline-block;
    width: 30px;
    height: 24px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 17px;
    right: 15px;
    z-index: 1000;
    transform: translateX(0);
    transition: transform .5s;
  }
  #gnav_sp .menu-trigger.active {
    transform: translateX(0);
  }
  #gnav_sp .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2e83b4;
    transition: all .5s;
  }
  #gnav_sp .menu-trigger.active span {
    background-color: #ffffff;
  }
  #gnav_sp .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  #gnav_sp .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  #gnav_sp .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }
  #gnav_sp .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #gnav_sp .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #gnav_sp .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
  #gnav_sp nav {
    width: 90%;
    height: 100%;
    line-height: 2.5;
    background-color: #2e83b4;
    position: fixed;
    top: 0;
    right: 0;
    transform: translate(100%);
    transition: all .5s;
    z-index: 999;
    padding: 80px 0 0;
    overflow-y: scroll;
  }
  #gnav_sp nav.open {
    transform: translateZ(0);
  }
  #gnav_sp nav ul li {
    text-align: center;
    line-height: 3.5;
    font-size: 18px;
    font-size: 1.8rem;
  }
  #gnav_sp nav ul li a:hover {
    color: #bab4c9;
  }
}
/*====================
メインビジュアル
======================*/
#mainArea {
  position: relative;
  height: 100vh;
  margin-bottom: 170px;
}
#mainArea #slideWrap {
  padding: 100px 0 0 250px;
  z-index: 10;
  height: 100%;
}
#mainArea #slideWrap:before {
  content: '';
  display: block;
  background: linear-gradient(90deg, #2580b3, #cbbacc);
  /*background:#002e73;*/
  width: 100%;
  height: 90%;
  z-index: 0;
  position: absolute;
  bottom: -10%;
  left: -10%;
  top: auto;
}
#mainArea #slideWrap .slideWrapInner {
  width: 80%;
  position: absolute;
  top: 100px;
  right: 0;
  height: 90%;
  background-image: url("../images/slide2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#mainArea #catch {
  font-weight: 600;
  position: absolute;
  z-index: 2;
  color: #ffffff;
  left: 80px;
  /*bottom: 260px;*/
  top: 60%;
  transform: translateY(-40%);
  margin: auto 0;
  letter-spacing: 0;
}
#mainArea #catch h1 {
  font-weight: 400;
  font-size: 3rem;
  padding-top: 20px;
  letter-spacing: 0.05em;
  font-family: YuMincho, "Yu Mincho", "serif"
}
#mainArea #catch::before {
  content: 'STEP FORWARD\A BY CREATIVITY';
  white-space: pre;
  display: block;
  margin-bottom: 10px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-size: 11rem;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  #mainArea {
    position: relative;
    height: 55vh;
    margin-bottom: 0;
  }
  #mainArea #slideWrap {
    padding: 100px 0 0 0;
    z-index: 10;
    height: 90%;
  }
  #mainArea #slideWrap:before {
    content: '';
    display: block;
    width: 100%;
    height: 70%;
    z-index: 0;
    position: absolute;
    bottom: auto;
    left: -10%;
    top: 180px;
  }
  #mainArea #slideWrap .slideWrapInner {
    /*padding: 100px 0 0 250px;*/
    width: 90%;
    position: absolute;
    top: 100px;
    right: 0;
    height: 70%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #mainArea #catch {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    font-size: 3rem;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  #mainArea #catch::before {
    font-size: 8rem;
  }
}
@media screen and (max-width: 824px) {
  #mainArea {
    height: 60vh;
  }
  #mainArea #catch {
    font-size: 2.4rem;
  }
  #mainArea #catch::before {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  #mainArea {
    height: 40vh;
    margin-bottom: 8%;
  }
  #mainArea #slideWrap {
    padding: 60px 0 0 60px;
    z-index: 1;
    width: 100%;
    height: 85%;
  }
  #mainArea #slideWrap:before {
    width: 100%;
    height: 80%;
    z-index: 0;
    top: 120px;
    left: -60px;
  }
  #mainArea #slideWrap .slideWrapInner {
    width: 90%;
    height: 80%;
    position: absolute;
    top: 60px;
    right: 0;
    background-position: left center;
  }
  #slideWrap .slideWrapInner ul li {
    max-height: 80%;
  }
  #mainArea #catch {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    font-size: 2rem;
    left: 5%;
    bottom: auto;
    /*top: 40%;*/
    letter-spacing: 0.1rem;
    top: 55%;
    transform: translateY(-45%);
  }
  #mainArea #catch h1 {
    font-weight: 400;
    font-size: 2.4rem;
    padding-top: 0;
  }
  #mainArea #catch::before {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 480px) {
  #mainArea {
    height: 70vh;
    /*margin-bottom: 7%;*/
    margin-bottom: 5%;
  }
  #mainArea #slideWrap {
    padding: 60px 0 0 0;
    z-index: 1;
    width: 100%;
    height: 85%;
  }
  #mainArea #slideWrap:before {
    width: 100%;
    height: 80%;
    z-index: 0;
    top: 100px;
    left: -30px;
  }
  #mainArea #slideWrap .slideWrapInner {
    width: 80%;
    height: 80%;
    position: absolute;
    top: 60px;
    right: 0;
    background-position: left center;
  }
  #slideWrap .slideWrapInner ul li {
    max-height: 80%;
  }
  #mainArea #catch {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    font-size: 2rem;
    left: 5%;
    /*bottom: 35%;*/
    letter-spacing: 0.1rem;
  }
  #mainArea #catch h1 {
    font-size: 2rem;
    padding-top: 20px;
  }
  #mainArea #catch::before {
   line-height: 1.1;
	  font-size:4rem;
  }
}
/*トップ共通*/
#top section h2 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 400;
  /*letter-spacing: 0.2rem;*/
  margin-bottom: 25px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"
}
#top section h2:before {
  font-size: 5.6rem;
  display: block;
  text-align: center;
  /*font-family: roboto, sans-serif;*/
  font-family: futura-pt, sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
}
#top section p {
  font-size: 1.6rem;
  text-align: left;
  line-height: 2;
}
/*見出し*/
#top .top-mission h2:before {
  content: 'MISSION';
}
#top .top-creative h2:before {
  content: 'CREATIVE';
}
#top .top-consulting h2:before {
  content: 'CONSULTING';
}
#top .top-event h2:before {
  content: 'EVENT';
}
#top .top-about h2:before {
  content: 'ABOUT';
}
/*ミッション*/
#top .top-mission {
  margin-top: -100px;
  padding-top: 100px;
  margin-bottom: 70px;
  width: 100%;
}
#top .top-mission h3 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"
}
#top .top-mission p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.5;
}
/*クリエイティブ*/
#top .top-creative, #top .top-consulting, #top .top-event {
  width: 100%;
  position: relative;
  display: flex;
  height: 700px;
  margin-bottom: 70px;
}
#top .top-creative .bg, #top .top-event .bg {
  width: 70%;
  position: absolute;
  background-color: #edf9ff;
  right: 0;
  bottom: 0;
  height: 600px;
  z-index: 1;
}
#top .top-consulting .bg {
  width: 70%;
  position: absolute;
  background-color: #edf9ff;
  left: 0;
  bottom: 0;
  height: 600px;
  z-index: 1;
}
#top .top-creative .wrapper, #top .top-consulting .wrapper, #top .top-event .wrapper {
  width: 100%;
  position: relative;
  height: 700px;
  /*margin-top: 200px;*/
  /*display: flex;*/
}
#top .top-creative .wrapper .inbox, #top .top-event .wrapper .inbox {
  position: absolute;
  right: 0;
  width: 50%;
  z-index: 5;
  margin-left: 50%;
}
#top .top-consulting .wrapper .inbox {
  position: absolute;
  left: 0;
  width: 50%;
  z-index: 5;
  margin-right: 50%;
}
#top .top-creative .wrapper .inbox .txtbox, #top .top-consulting .wrapper .inbox .txtbox, #top .top-event .wrapper .inbox .txtbox {
  padding-top: 200px;
  width: 70%;
  margin: 0 auto;
}
#top .top-creative .wrapper .inbox .txtbox .example, #top .top-consulting .wrapper .inbox .txtbox .example, #top .top-event .wrapper .inbox .txtbox .example {
  padding: 25px;
  width: 100%;
  background-color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 25px;
}
#top .top-creative .wrapper .imgbox {
  width: 50%;
  height: 600px;
  z-index: 10;
  background-image: url("../images/top-creative.jpg");
  background-size: cover;
  bottom: 70px;
  position: absolute;
}
#top .top-consulting .wrapper .imgbox {
  width: 50%;
  height: 600px;
  z-index: 10;
  background-image: url("../images/top-consulting.jpg");
  background-size: cover;
  bottom: 70px;
  right: 0;
  left: auto;
  position: absolute;
}
#top .top-event .wrapper .imgbox {
  width: 50%;
  height: 600px;
  z-index: 10;
  background-image: url("../images/top-event.jpg");
  background-size: cover;
  bottom: 70px;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  #top section p {
    font-size: 1.5rem;
    text-align: left;
    line-height: 2;
  }
  #top section h2:before {
    font-size: 3.8rem;
  }
  #top .top-mission {
    padding-top: 90px;
    margin: -60px auto 8%;
    width: 90%;
  }
  #top .top-mission p {
    font-size: 1.6rem;
    text-align: left;
    line-height: 2.5;
  }
  #top .top-creative, #top .top-consulting, #top .top-event {
    width: 100%;
    position: relative;
    display: flex;
    height: 670px;
    margin-bottom: 70px;
  }
  #top .top-creative .wrapper .inbox .txtbox, #top .top-consulting .wrapper .inbox .txtbox, #top .top-event .wrapper .inbox .txtbox {
    padding-top: 180px;
    width: 80%;
    margin: 0 auto;
  }
  #top .top-creative .wrapper .inbox .txtbox .example, #top .top-consulting .wrapper .inbox .txtbox .example, #top .top-event .wrapper .inbox .txtbox .example {
    padding: 15px 20px;
    width: 100%;
    background-color: #ffffff;
    font-size: 1.4rem;
    margin-top: 15px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  #top section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  #top section h2:before {
    font-size: 3.2rem;
  }
  #top section p {
    font-size: 1.4rem;
    text-align: left;
    line-height: 2;
    margin-bottom: 15px;
  }
  /*ミッション*/
  #top .top-mission {
    margin-top: -60px;
    padding-top: 90px;
    margin-bottom: 8%;
    width: 100%;
  }
  #top .top-mission .wrapper {
    margin: 0 auto;
    width: 90%;
  }
  #top .top-mission h3 {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 10px;
  }
  #top .top-mission p {
    font-size: 1.4rem;
    line-height: 2;
    text-align: left;
  }
  /*クリエイティブ*/
  #top .top-creative, #top .top-consulting, #top .top-event {
    width: 100%;
    position: relative;
    display: flex;
    height: auto;
    margin-bottom: 0;
    flex-direction: column;
    margin-top: -60px;
    padding-top: 60px;
  }
  #top .top-creative .bg, #top .top-event .bg {
    display: none;
  }
  #top .top-consulting .bg {
    display: none;
  }
  #top .top-creative .wrapper, #top .top-consulting .wrapper, #top .top-event .wrapper {
    width: 100%;
    position: relative;
    height: auto;
  }
  #top .top-consulting .wrapper {
    width: 100%;
    position: relative;
    height: auto;
    flex-direction: column-reverse;
    display: flex;
  }
  #top .top-creative .wrapper .inbox, #top .top-event .wrapper .inbox {
    position: static;
    right: 0;
    width: 100%;
    z-index: 5;
    margin-left: 0;
    padding: 8% 5%;
    background-color: #edf9ff;
  }
  #top .top-consulting .wrapper .inbox {
    position: static;
    left: 0;
    width: 100%;
    z-index: 5;
    margin-right: 0;
    padding: 8% 5%;
    background-color: #edf9ff;
  }
  #top section.top-creative p {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.8;
  }
  #top .top-creative .wrapper .inbox .txtbox, #top .top-consulting .wrapper .inbox .txtbox, #top .top-event .wrapper .inbox .txtbox {
    padding-top: 0;
    width: 100%;
    margin: 0 auto;
  }
  #top .top-creative .wrapper .inbox .txtbox .example, #top .top-consulting .wrapper .inbox .txtbox .example, #top .top-event .wrapper .inbox .txtbox .example {
    padding: 15px;
    width: 100%;
    background-color: #ffffff;
    font-size: 1.3rem;
    margin-top: 10px;
    line-height: 1.8;
  }
  #top .top-creative .wrapper .imgbox {
    width: 100%;
    height: 300px;
    z-index: 10;
    background-image: url("../images/top-creative.jpg");
    background-size: cover;
    bottom: 70px;
    position: static;
  }
  #top .top-consulting .wrapper .imgbox {
    width: 100%;
    height: 300px;
    z-index: 10;
    background-image: url("../images/top-consulting.jpg");
    background-size: cover;
    bottom: 70px;
    right: 0;
    left: auto;
    position: static;
  }
  #top .top-event .wrapper .imgbox {
    width: 100%;
    height: 300px;
    z-index: 10;
    background-image: url("../images/top-event.jpg");
    background-size: cover;
    bottom: 70px;
    position: static;
  }
}
@media screen and (max-width: 480px) {
  #top .top-mission {
    margin-top: -60px;
    padding-top: 50px;
    margin-bottom: 9%;
    width: 100%;
  }
  #top section.top-mission h2 {
    margin-bottom: 5px;
  }
}
/*会社概要*/
#top .top-about {
  margin-bottom: 100px;
  margin-top: -100px;
  padding-top: 100px;
}
#top .top-about .wrapper {
  margin: 0 auto;
  max-width: 1000px;
  min-width: 768px;
  padding: 0 30px;
}
#top .top-about table {
  margin: 0 auto;
  line-height: 1.8;
  width: 100%;
  font-size: 1.6rem;
}
#top .top-about table th {
  border-bottom: 1px solid #2e83b4;
  padding: 2.5rem 2.5rem 2.5rem 10px;
  text-align: left;
  vertical-align: middle;
  width: 16rem;
  font-weight: 400;
}
#top .top-about table th:first-child {
  border-top: 1px solid #2e83b4;
}
#top .top-about table tr td:first-of-type {
  border-top: 1px solid #bab4c9;
}
#top .top-about table td {
  border-bottom: 1px solid #bab4c9;
  padding: 2.5rem 2.5rem 2.5rem 10px;
}
.top-about a {
  color: #414356;
  text-decoration: none;
  transition: .5s;
}
.top-about a:hover {
  color: #3084b5;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  #top .top-about .wrapper {
    margin: 0 auto;
    max-width: 90%;
    min-width: auto;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #top .top-about {
    margin-top: -60px;
    padding-top: 100px;
    margin-bottom: 8%;
  }
  #top .top-about .wrapper {
    margin: 0 auto;
    max-width: 90%;
    min-width: auto;
  }
  #top .top-about table {
    margin: 0 auto;
    line-height: 1.8;
    width: 100%;
    font-size: 1.4rem;
  }
  #top .top-about table th {
    padding: 1.4rem;
    text-align: left;
    vertical-align: middle;
    width: 10rem;
    font-size: 1.4rem;
  }
  #top .top-about table th:first-child {
    border-top: 1px solid #002e73;
  }
  #top .top-about table tr td:first-of-type {
    border-top: 1px solid #ddd;
  }
  #top .top-about table td {
    border-bottom: 1px solid #ddd;
    padding: 1.4rem;
    font-size: 1.4rem;
  }
}
.bnr-area {
  width: 100%;
  background-image: url("../images/bnrarea-bg.jpg");
  background-size: cover;
  height: 360px;
  background-repeat: no-repeat;
}
.bnr-area ul {
  max-width: 1160px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  margin: 0 auto;
  padding: 0 30px;
}
.bnr-area ul li {
  width: 50%;
  margin-right: 50px;
}
.bnr-area ul li:last-child {
  margin-right: 0;
}
.bnr-area ul li a img {
  display: block;
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.bnr-area ul li a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
footer {
  /*background-color: #002e73;*/
  /*background-color: #1a1a1a;*/
  background: linear-gradient(90deg, #2580b3, #cbbacc);
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer p {
  font-size: 1.2rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .bnr-area {
    height: 200px;
  }
  .bnr-area ul {
    max-width: 1000px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .bnr-area {
    width: 100%;
    background-size: cover;
    height: auto;
    padding: 5%;
  }
  .bnr-area ul {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
  }
  .bnr-area ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .bnr-area ul li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  footer {
    width: 100%;
    padding: 15px 5%;
  }
  footer p {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .bnr-area ul {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
  }
  .bnr-area ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .bnr-area ul li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  footer {
    width: 100%;
    padding: 15px 5%;
  }
  footer p {
    font-size: 1.2rem;
    text-align: center;
  }
}
/*==========================
*下層ページ*
===========================*/
/*メインビジュアル*/
#lowArea {
  position: relative;
  height: 410px;
  margin-bottom: 80px;
}
#lowArea #lowWrap {
  padding: 100px 0 0 0;
  z-index: 10;
  height: 100%;
}
#lowArea #lowWrap:before {
  content: '';
  display: block;
  background: linear-gradient(90deg, #2580b3, #cbbacc);
  /*background:#002e73;*/
  width: 100%;
  height: 250px;
  z-index: 0;
  position: absolute;
  top: 160px;
  left: -10%;
}
#lowArea #lowWrap .lowWrapInner {
  width: 90%;
  position: absolute;
  top: 100px;
  right: 0;
  height: 250px;
  background-image: url("../images/ttl-contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#lowArea #pagettl h1 {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  font-size: 2rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  left: 80px;
  top: 220px;
  font-weight: 400;
  margin-bottom: 0;
}
#lowArea #pagettl h1:before {
  content: 'CONTACT';
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-size: 5rem;
  color: #ffffff;
  line-height: 1;
  padding-right: 20px;
  letter-spacing: .03em
}
#lower .wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  #lowArea {
    height: 410px;
    margin-bottom: 80px;
  }
  #lowArea #lowWrap {
    padding: 100px 0 0 0;
    z-index: 10;
    height: 100%;
  }
  #lowArea #lowWrap:before {
    width: 100%;
    height: 250px;
    top: 160px;
    left: -10%;
  }
  #lowArea #lowWrap .lowWrapInner {
    width: 80%;
    top: 100px;
    right: 0;
    height: 250px;
  }
  #lowArea #pagettl h1 {
    font-size: 2rem;
    left: 50px;
    top: 200px;
    margin-bottom: 0;
  }
  #lowArea #pagettl h1:before {
    font-size: 6rem;
    line-height: 1;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #lowArea {
    position: relative;
    height: 370px;
    margin-bottom: 50px;
  }
  #lowArea #lowWrap {
    padding: 60px 0 0 0;
    z-index: 10;
    height: 100%;
  }
  #lowArea #lowWrap:before {
    width: 100%;
    height: 250px;
    z-index: 0;
    top: 120px;
    left: -10%;
  }
  #lowArea #lowWrap .lowWrapInner {
    width: 90%;
    top: 60px;
    right: 0;
    height: 250px;
  }
  #lowArea #pagettl h1 {
    font-size: 1.8rem;
    left: 40px;
    top: 160px;
    margin-bottom: 0;
  }
  #lowArea #pagettl h1:before {
    font-size: 5rem;
    line-height: 1;
    padding-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  #lowArea {
    height: 280px;
    margin-bottom: 40px;
  }
  #lowArea #lowWrap {
    padding: 60px 0 0 0;
    z-index: 10;
    height: 100%;
  }
  #lowArea #lowWrap:before {
    content: '';
    display: block;
    width: 100%;
    height: 170px;
    z-index: 0;
    top: 100px;
    left: -40px;
  }
  #lowArea #lowWrap .lowWrapInner {
    width: 80%;
    position: absolute;
    top: 65px;
    right: 0;
    height: 180px;
  }
  #lowArea #pagettl h1 {
    z-index: 2;
    font-size: 1.5rem;
    left: 20px;
    top: 140px;
    margin-bottom: 0;
  }
  #lowArea #pagettl h1:before {
    white-space: pre;
    display: block;
    font-size: 3.2rem;
    line-height: 1.2;
    padding-right: 20px;
  }
  #lower .wrapper {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
  }
}
/*==========================
*お問い合わせ*
===========================*/
.contact {
  margin-bottom: 100px;
}
.contact p {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 80px;
  font-size: 1.6rem;
}
.contact-tbl {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-bottom: 60px;
    text-align: left;
  }
  .contact p {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .contact {
    margin-bottom: 50px;
  }
  .contact p {
    margin-bottom: 40px;
    font-size: 1.4rem;
    line-height: 2;
    text-align: left;
  }
}
input[type="submit"], input[type="reset"], input[type="text"], select, textarea, button, input[type="button"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}
input[type="text"], textarea {
  background: #f0f0f0;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.3s;
  border-radius: 0;
}
input[type="text"]:focus, textarea:focus {
  background: #f6f6f6;
}
textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}
input::placeholder, textarea::placeholder {
  color: #ccc;
}
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.contact-tbl select {
  width: 100%;
  padding: 15px;
  line-height: 1;
  border-radius: 5px;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: solid 1px #cccccc;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact-tbl select::-ms-expand {
  display: none;
}
select.minimal {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 6px), calc(100% - 15px) calc(1em + 6px), calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px, 5px 5px, 1px 30px;
  background-repeat: no-repeat;
}
.contact-tbl th {
  border-bottom: 1px solid #2e83b4;
  padding: 2.5rem;
  text-align: left;
  vertical-align: middle;
  width: 25%;
  font-weight: normal;
}
.contact-tbl th:first-child {
  border-top: 1px solid #2e83b4;
}
.contact-tbl td:first-of-type {
  border-top: 1px solid #bab4c9;
}
.contact-tbl td {
  border-bottom: 1px solid #bab4c9;
  padding: 2.5rem;
}
.contact-tbl .must {
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  background-color: #d599d9;
  line-height: 2;
  margin-right: 1rem;
  width: 4rem;
}
.contact-tbl .free {
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  background-color: #ccc;
  line-height: 2;
  margin-right: 1rem;
  width: 4rem;
}
.contact-btn {
  margin: 60px auto;
  text-align: center;
}
.contact-btn .btn {
  width: 20%;
  padding: 18px 0;
  background-color: #3084b5;
  color: #ffffff;
  transition: .3s;
  font-weight: 400;
  font-size: 1.5rem;
}
.contact-btn .btn:hover {
  background-color: #afb0c8;
  transition: .3s;
}
@media screen and (max-width: 1024px) {
  .contact-tbl th {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.5rem;
    width: 30%;
  }
  .contact-btn .btn {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .contact-tbl th {
    display: block;
    width: 100%;
    text-align: left;
    background-color: #ebf1f9;
    border-bottom: none;
    padding-left: 2rem;
  }
  .contact-tbl td {
    width: 100%;
    text-align: center;
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
  .contact-tbl td:first-of-type {
    border-top: none;
  }
  .contact-btn .btn {
    width: 30%;
    padding: 15px 0;
  }
}
@media screen and (max-width: 480px) {
  .contact-btn {
    margin: 30px auto;
  }
  .contact-tbl th {
    display: block;
    width: 100%;
    background-color: #ebf1f9;
    border-bottom: none;
    padding: 12px;
    text-align: left;
  }
  .contact-tbl td {
    width: 100%;
    display: block;
    padding: 15px 0;
    text-align: left;
  }
  .contact-btn .btn {
    width: 40%;
    padding: 15px 0;
    transition: .3s;
    font-size: 1.4rem;
  }
}
/*.btn-back {
  text-align: center;
  display: block;
  margin: 0 auto;
  width: 20%;
  min-width: 8rem;
  padding: 18px 0;
  transition: .3s;
  font-weight: 500;
  letter-spacing: .2rem;
  font-size: 1.6rem;
}*/
.btn-back {
  background-color: #3084b5;
  text-align: center;
  display: block;
  margin: 0 auto;
  width: 20%;
  min-width: 8rem;
  padding: 18px 0;
  color: #ffffff;
  transition: .3s;
  font-weight: 400;
  font-size: 1.5rem;
}
.btn-back:hover {
  background-color: #afb0c8;
  transition: .3s;
}
@media screen and (max-width: 1024px) {
  .btn-back {
    width: 30%;
  }
  #btm-fix {
    width: 100%;
    position: fixed;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #btm-fix {
    width: 100%;
    position: static;
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .btn-back {
    width: 80%;
    font-size: 1.4rem;
  }
}
.contact p.error_messe {
  color: #d599d9;
  margin-bottom: 20px;
}