﻿@charset "UTF-8";
/**********************************
 * Base Style
 **********************************/
*,
*:after,
*:before {
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  position: relative;
  color: #151515;
  font-size: 1.6rem;
  font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
  line-height: 1.5; }

a {
  color: #ffffff;
  text-decoration: none; }

@media screen and (min-width: 737px) {
  a:hover, a:active {
    text-decoration: none; } }

li,
ol {
  list-style: none; }

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

@media screen and (min-width: 737px) {
  img {
    width: auto; } }

/**********************************
 * Layout Style
 **********************************/
/**=========================================
 * l-wrap
 =========================================*/
.l-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 100%; }

@media screen and (max-width: 975px) {
  .l-wrap {
    width: 100%; } }

@media screen and (max-width: 736px) {
  .l-wrap {
    width: 100%; } }

/**=========================================
 * l-main
 =========================================*/
.l-main {
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  position: relative; }

@media screen and (max-width: 975px) {
  .l-main {
    width: 100%; } }

@media screen and (max-width: 736px) {
  .l-main {
    width: 100%; } }

/**=========================================
* l-col
* flex
=========================================*/
.l-col-two {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start; }

@media screen and (max-width: 975px) {
  .l-col-two {
    width: 90%;
    margin: 0 auto; } }

@media screen and (max-width: 736px) {
  .l-col-two {
    display: block; } }

/**=========================================
* l-flex
* リスト形式
=========================================*/
.l-flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center; }

/**=========================================
* l-flex-02
* リスト形式
=========================================*/
.l-flex-start {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center; }

/**=========================================
* l-flex-03
* リスト形式
=========================================*/
.l-flex-center {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center; }

/**=========================================
* l-flex-04
* リスト形式
=========================================*/
.l-flex-top {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start; }

/**=========================================
* l-flex-04
* リスト形式
=========================================*/
.l-flex-end {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start; }

@media screen and (max-width: 736px) {
  .l-flex-end {
    display: block; } }

/**********************************
 * Header Style
**********************************/
/**=========================================
 * l-header
 =========================================*/
#m-header-box .fixheader {
  background: #171717; }

#m-header .title {
  padding-left: 3%; }

@media screen and (max-width: 736px) {
  #m-header .title img {
    width: 85%; } }

#m-header nav {
  padding-right: 3%; }

@media screen and (max-width: 736px) {
  #m-header nav {
    display: none; } }

#m-header .m-nav li {
  padding-left: 30px; }

#m-header .m-nav li:first-child {
  padding-left: 0px; }

@media screen and (max-width: 975px) {
  #m-header .m-nav li {
    padding-left: 25px; } }

#m-header .m-nav li a {
  display: block;
  position: relative;
  padding-bottom: 7px;
  padding-top: 8px;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  opacity: 1; }

#m-header .m-nav li a::before, #m-header .m-nav li a::after {
  border-bottom: solid 1px #fae501;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0; }

#m-header .m-nav li a::before {
  left: 50%; }

#m-header .m-nav li a::after {
  right: 50%; }

#m-header .m-nav li a:hover::before, #m-header .m-nav li a:hover::after {
  width: 50%; }

@media screen and (max-width: 975px) {
  #m-header .m-nav li a:hover::before, #m-header .m-nav li a:hover::after {
    display: none; } }

@media screen and (max-width: 975px) {
  #m-header .m-nav li a {
    padding-bottom: 3px;
    font-size: 1.6rem; } }

/**=========================================
 * header メニューアニメーション
=========================================*/
#m-header .fixheader {
  position: absolute;
  width: 100%;
  padding: 18px 0px;
  z-index: 10; }

#m-header .fixed {
  position: fixed !important;
  top: 0;
  -webkit-transform: translate(0%, 0px) scale(1);
  transform: translate(0%, 0px) scale(1);
  transition: left 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, left 0.6s ease;
  transition: transform 0.6s ease, left 0.6s ease, -webkit-transform 0.6s ease;
  padding: 18px 0px;
  background: #171717; }

@media screen and (max-width: 736px) {
  #m-header .fixed {
    position: absolute !important; } }

#m-header .slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  top: 0; }

@-webkit-keyframes slideDown {
  0% {
    top: -56px; }
  100% {
    top: 0; } }

@keyframes slideDown {
  0% {
    top: -56px; }
  100% {
    top: 0; } }

#m-header .slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform-origin: 50% 50%  0;
  transform-origin: 50% 50%  0;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  top: 0px; }

@-webkit-keyframes slideUp {
  0% {
    top: 0; }
  100% {
    top: 0px; } }

@keyframes slideUp {
  0% {
    top: 0; }
  100% {
    top: 0px; } }

/**********************************
* Footer Style
**********************************/
footer {
  background: #111d30; }

footer .box {
  padding: 28px 60px; }

@media screen and (max-width: 736px) {
  footer .box .title {
    display: block;
    margin: auto;
    width: 60%; } }

footer .m-nav {
  font-size: 1.3rem; }

@media screen and (max-width: 975px) {
  footer .m-nav {
    font-size: 1.4rem; } }

@media screen and (max-width: 736px) {
  footer .m-nav {
    display: none; } }

footer .m-nav li {
  margin-left: 30px; }

footer .m-nav li:first-child {
  margin-left: 0px; }

footer .m-nav li a {
  display: block;
  position: relative;
  padding-bottom: 7px;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  opacity: 1; }

footer .m-nav li a::before, footer .m-nav li a::after {
  border-bottom: solid 1px #fae501;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0; }

footer .m-nav li a::before {
  left: 50%; }

footer .m-nav li a::after {
  right: 50%; }

footer .m-nav li a:hover::before, footer .m-nav li a:hover::after {
  width: 50%; }

@media screen and (max-width: 975px) {
  footer .m-nav li a:hover::before, footer .m-nav li a:hover::after {
    display: none; } }

small {
  display: block;
  padding: 20px 0;
  text-align: center;
  font-size: 1.3rem;
  background: #ffffff; }

@media screen and (max-width: 975px) {
  small {
    font-size: 1.3rem; } }

@media screen and (max-width: 736px) {
  small {
    padding: 10px 0;
    font-size: 1.2rem; } }

/**********************************
 * Title Style
**********************************/
/**=========================================
* content-title
* TOPページコンテンツタイトル
=========================================*/
.content-title {
  margin-bottom: 10px;
  color: #003b90;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700; }

@media screen and (max-width: 736px) {
  .content-title {
    margin-bottom: 5px; } }

.content-title .mini {
  padding-left: 10px;
  font-size: 2.8rem; }

@media screen and (max-width: 736px) {
  .content-title .mini {
    padding-left: 5px; } }

/**=========================================
* content-title
* 下層ページコンテンツタイトル
=========================================*/
.m-layer-title {
  width: 100%;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
  text-align: center;
  height: 122px;
  text-align: center; }

@media screen and (max-width: 736px) {
  .m-layer-title {
    top: 65%;
    -webkit-transform: translateY(-65%);
    transform: translateY(-65%); } }

.m-layer-title .title {
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  font-size: 5.4rem; }

@media screen and (max-width: 975px) {
  .m-layer-title .title {
    font-size: 5.5rem; } }

@media screen and (max-width: 736px) {
  .m-layer-title .title {
    font-size: 3.7rem; } }

.m-layer-title .text {
  font-size: 2rem;
  color: #151515;
  font-weight: bold; }

@media screen and (max-width: 975px) {
  .m-layer-title .text {
    font-size: 2.2rem; } }

@media screen and (max-width: 736px) {
  .m-layer-title .text {
    font-size: 1.8rem; } }

/**********************************
 * Text Style
 **********************************/
/**=========================================
* color
* 色設定
=========================================*/
.color-blue {
  color: #003b90; }

.color-white {
  color: #ffffff; }

.color-yellow {
  color: #e5d200; }

/**********************************
 * block Style
 **********************************/
/**=========================================
 * 背景色
 =========================================*/
.m-bg-white {
  background: #ffffff; }

.m-bg-gray {
  background: #f0f0f0; }

.m-bg-blue {
  background: #dff4ff; }

/**=========================================
 * 影
 =========================================*/
.m-shadow {
  box-shadow: 0px 20px 15px -20px rgba(0, 0, 0, 0.5); }

/**=========================================
 * m-content
 =========================================*/
.m-content {
  padding: 60px 0; }

@media screen and (max-width: 975px) {
  .m-content {
    padding: 50px 30px; } }

@media screen and (max-width: 736px) {
  .m-content {
    padding: 40px 20px; } }

/**=========================================
 * m-content
 =========================================*/
#layer .m-content {
  padding: 70px 0 80px 0; }

@media screen and (max-width: 975px) {
  #layer .m-content {
    padding: 60px 30px; } }

@media screen and (max-width: 736px) {
  #layer .m-content {
    padding: 40px 20px; } }

#layer .m-content-two {
  padding: 70px 0 0px 0; }

#layer .m-content-two:nth-child(2) {
  padding: 70px 0 0px 0; }

#layer .m-content-two:nth-child(3) {
  padding: 70px 0 0px 0; }

#layer .m-content-two:last-child {
  padding: 0px 0 80px 0; }

@media screen and (max-width: 975px) {
  #layer .m-content-two {
    padding: 60px 30px 0 30px; }
  #layer .m-content-two:nth-child(2) {
    padding: 60px 30px 0px 30px; }
  #layer .m-content-two:nth-child(3) {
    padding: 60px 30px 0px 30px; }
  #layer .m-content-two:last-child {
    padding: 0px 30px 60px 30px; } }

@media screen and (max-width: 736px) {
  #layer .m-content-two {
    padding: 40px 20px 0 20px; }
  #layer .m-content-two:nth-child(2) {
    padding: 40px 20px 0px 20px; }
  #layer .m-content-two:nth-child(3) {
    padding: 40px 20px 0px 20px; }
  #layer .m-content-two:last-child {
    padding: 20px 20px 40px 20px; } }

/**********************************
* Button Style
**********************************/
/**=========================================
* moreボタン
=========================================*/
.btn-blue {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 10%;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  width: 80%;
  border: 1px solid #ffffff;
  background-color: rgba(45, 87, 195, 0.2);
  transition: all .3s;
  font-size: 1.8rem;
  text-align: center;
  text-shadow: none;
  letter-spacing: 2px; }

.btn-blue:after {
  content: '';
  position: absolute;
  right: 7%;
  top: -2px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.btn-blue:hover {
  background-color: transparent;
  letter-spacing: 6px;
  background-color: rgba(0, 59, 144, 0.4); }

@media screen and (max-width: 975px) {
  .btn-blue {
    font-size: 1.6rem; } }

@media screen and (max-width: 736px) {
  .btn-blue {
    width: 60%;
    font-size: 1.6rem; } }

/**=========================================
* ドロワーメニューボタン
=========================================*/
/* //ドロワーメニューのClose時のスタイルシート */
.btn-drawer {
  display: none;
  /* //ドロワーメニューの開閉ボタン */ }

@media screen and (max-width: 736px) {
  .btn-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 50px 0px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: ease .5s;
    z-index: 9999; } }

.btn-drawer ul {
  padding: 40px 0px; }

.btn-drawer ul li {
  position: relative;
  margin-bottom: 40px;
  margin-left: 10%;
  font-size: 2rem;
  text-align: left;
  font-weight: bold; }

.btn-drawer ul li a {
  padding: 8px 10px;
  color: #003b90;
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  border-bottom: 1px solid #003b90; }

.btn-drawer .btn-menu {
  /* //ハンバーガーボタンを作るスタイルシート */ }

@media screen and (max-width: 736px) {
  .btn-drawer .btn-menu {
    position: fixed;
    top: 4px;
    left: -60px;
    width: 50px;
    height: 50px;
    transition: ease .5s;
    cursor: pointer;
    -webkit-box-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 10px;
    padding-bottom: 2px;
    z-index: 100;
    border-radius: 40px;
    background: #171717; } }

@media screen and (max-width: 736px) {
  .btn-drawer .btn-menu .line-icon {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 3px;
    width: 24px;
    background: #ffffff;
    transition: ease .5s; }
  .btn-drawer .btn-menu .line-icon:nth-child(1) {
    top: 35%;
    left: 50%; }
  .btn-drawer .btn-menu .line-icon:nth-child(2) {
    top: 50%;
    left: 50%; }
  .btn-drawer .btn-menu .line-icon:nth-child(3) {
    top: 65%;
    left: 50%; } }

/* //ドロワーメニューをOPENにするスタイルシート */
#m-header .action {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-overflow-scrolling: touch; }

#m-header .action {
  right: 0;
  left: auto; }

#m-header .btn-drawer .action {
  right: 10px; }

#m-header .action .line-icon:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg); }

#m-header .action .line-icon:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0; }

#m-header .action .line-icon:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg); }

/**********************************
 * TOPページ Style
**********************************/
#top .m-top {
  background-image: url(../images/main_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 800px; }

@media screen and (min-width: 1850px) {
  #top .m-top {
    height: 920px; } }

@media screen and (max-width: 975px) {
  #top .m-top {
    height: 630px;
    background-position: left center; } }

@media screen and (max-width: 736px) {
  #top .m-top {
    background-image: url(../images/main_sp.png); } }

#top .m-top .m-copy {
  position: absolute;
  top: 45%;
  right: 0;
  -webkit-transform: translate(0%, -45%);
  transform: translate(0%, -45%);
  font-size: 3.5rem;
  letter-spacing: 2px;
  line-height: 1.2; }

@media screen and (min-width: 1850px) {
  #top .m-top .m-copy {
    top: 48%;
    -webkit-transform: translate(0%, -48%);
    transform: translate(0%, -48%);
    font-size: 4.5rem; } }

@media screen and (max-width: 736px) {
  #top .m-top .m-copy {
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    font-size: 4.5rem; } }

#top .m-top .m-copy img {
  display: block;
  margin-bottom: 10px;
  padding-left: 5px; }

@media screen and (max-width: 736px) {
  #top .m-top .m-copy img {
    padding-left: 5px;
    margin: 0 auto 16px;
    width: 80%; } }

@media screen and (max-width: 975px) {
  #top .m-top .m-copy {
    font-size: 3rem;
    right: 3%; } }

@media screen and (max-width: 736px) {
  #top .m-top .m-copy {
    right: 0;
    left: 0;
    margin: auto;
    padding: 0 6%;
    text-align: center;
    line-height: 1.4;
    font-size: 2.2rem; } }

#top .m-top-service .content-title {
  font-size: 5rem; }

@media screen and (max-width: 975px) {
  #top .m-top-service .content-title {
    font-size: 4.3rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .content-title {
    font-size: 3rem; } }

@media screen and (max-width: 975px) {
  #top .m-top-service .content-title .mini {
    font-size: 2.5rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .content-title .mini {
    font-size: 2rem; } }

#top .m-top-service .list {
  width: 100%;
  background: #ffffff; }

@media screen and (max-width: 736px) {
  #top .m-top-service .list {
    margin-bottom: 25px; }
  #top .m-top-service .list:last-child {
    margin-bottom: 0px; } }

#top .m-top-service .list .images01 {
  width: 100%;
  height: 405px;
  position: relative;
  background-image: url(../images/service_top_01.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .images01 {
    height: 275px; } }

#top .m-top-service .list .logo {
  width: 100%;
  position: absolute;
  left: 20px;
  top: 22px;
  margin: auto;
  z-index: 5; }

@media screen and (max-width: 975px) {
  #top .m-top-service .list .logo {
    width: 30%; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .logo {
    left: 10px;
    top: 12px;
    width: 40%; } }

#top .m-top-service .list .device {
  position: absolute;
  right: 20px;
  top: 20px; }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .device {
    right: 10px;
    top: 12px; } }

#top .m-top-service .list .device li {
  margin-left: 10px; }

#top .m-top-service .list .device li:first-child {
  margin-left: 0px; }

#top .m-top-service .list .device li .option {
  display: block;
  padding: 3px 12px;
  min-width: 96px;
  background: #383838;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  box-sizing: border-box; }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .device li .option {
    min-width: auto;
    padding: 3px 10px;
    font-size: 1.3rem; } }

#top .m-top-service .list .device li .active {
  background: #003b90; }

#top .m-top-service .list .text {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 19px 20px 20px 20px; }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .text {
    padding: 14px 10px 14px 10px; } }

#top .m-top-service .list .text > .title {
  margin-bottom: 13px;
  padding-bottom: 13px;
  font-size: 2rem;
  line-height: 1;
  border-bottom: 1px solid #ffffff; }

@media screen and (max-width: 975px) {
  #top .m-top-service .list .text > .title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 1.8rem;
    letter-spacing: 1px; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .text > .title {
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 1.5rem; } }

#top .m-top-service .list .text > .title .data {
  display: inline-block;
  padding: 7px 8px;
  background: #262626;
  color: #ffffff;
  font-size: 1.6rem;
  margin-right: 14px;
  letter-spacing: 1px; }

@media screen and (max-width: 975px) {
  #top .m-top-service .list .text > .title .data {
    font-size: 1.4rem;
    margin-right: 0px;
    margin-bottom: 5px; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .text > .title .data {
    margin-bottom: 7px;
    font-size: 1.1rem; } }

#top .m-top-service .list .text > .title .name {
  font-weight: bold;
  color: #ffffff; }

@media screen and (max-width: 975px) {
  #top .m-top-service .list .text > .title .name {
    display: block;
    margin-top: 6px; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .text > .title .name {
    margin-top: 0px; } }

#top .m-top-service .list .text > .title > .big {
  font-size: 2.4rem; }

@media screen and (max-width: 975px) {
  #top .m-top-service .list .text > .title > .big {
    font-size: 2rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .text > .title > .big {
    font-size: 1.8rem; } }

#top .m-top-service .list .text .read {
  font-size: 1.6rem;
  color: #ffffff; }

@media screen and (max-width: 975px) {
  #top .m-top-service .list .text .read {
    font-size: 1.5rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-service .list .text .read {
    font-size: 1.2rem; } }

#top .m-top-business .m-box {
  width: 999px; }

@media screen and (max-width: 975px) {
  #top .m-top-business .m-box {
    width: 100%; } }

#top .m-top-business .content-title {
  font-size: 5rem; }

@media screen and (max-width: 975px) {
  #top .m-top-business .content-title {
    font-size: 4.3rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-business .content-title {
    font-size: 3rem; } }

@media screen and (max-width: 975px) {
  #top .m-top-business .content-title .mini {
    font-size: 2.5rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-business .content-title .mini {
    font-size: 2rem; } }

#top .m-top-business .text {
  text-align: center;
  padding: 38% 3%;
  text-shadow: 0px 2px 2px rgba(6, 0, 1, 0.4);
  color: #ffffff; }

@media screen and (max-width: 975px) {
  #top .m-top-business .text {
    padding: 50% 3%; } }

@media screen and (max-width: 736px) {
  #top .m-top-business .text {
    padding: 16% 3% 30% 3%; } }

#top .m-top-business .text > .title {
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1; }

@media screen and (max-width: 975px) {
  #top .m-top-business .text > .title {
    font-size: 2rem;
    line-height: 1.4; } }

@media screen and (max-width: 736px) {
  #top .m-top-business .text > .title {
    font-size: 1.8rem;
    line-height: 1.3; } }

#top .m-top-business .text .read {
  font-size: 1.5rem; }

@media screen and (max-width: 736px) {
  #top .m-top-business .text .read {
    font-size: 1.3rem; } }

#top .m-top-business .list--01 {
  width: 333px;
  height: 386px;
  background-image: url(../images/business_01_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

@media screen and (max-width: 975px) {
  #top .m-top-business .list--01 {
    width: 33.3%;
    height: 386px; } }

@media screen and (max-width: 736px) {
  #top .m-top-business .list--01 {
    width: 100%;
    height: auto;
    background-image: url(../images/business_01_sp.png);
    box-shadow: 0px 20px 15px -20px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px; } }

#top .m-top-business .list--02 {
  width: 333px;
  height: 386px;
  background-image: url(../images/business_02_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

@media screen and (max-width: 975px) {
  #top .m-top-business .list--02 {
    width: 33.3%;
    height: 386px; } }

@media screen and (max-width: 736px) {
  #top .m-top-business .list--02 {
    width: 100%;
    height: auto;
    background-image: url(../images/business_02_sp.png);
    box-shadow: 0px 20px 15px -20px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px; } }

#top .m-top-business .list--03 {
  width: 333px;
  height: 386px;
  background-image: url(../images/business_03_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }

@media screen and (max-width: 975px) {
  #top .m-top-business .list--03 {
    width: 33.4%;
    height: 386px; } }

@media screen and (max-width: 736px) {
  #top .m-top-business .list--03 {
    width: 100%;
    height: auto;
    background-image: url(../images/business_03_sp.png);
    box-shadow: 0px 20px 15px -20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0px; } }

#top .m-top-vision {
  min-height: 480px; }

@media screen and (max-width: 736px) {
  #top .m-top-vision {
    min-height: auto; } }

#top .m-top-vision .m-box {
  position: relative;
  min-height: 480px; }

@media screen and (max-width: 736px) {
  #top .m-top-vision .m-box {
    min-height: auto; } }

#top .m-top-vision .left {
  width: 60%;
  min-width: 630px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0; }

@media screen and (max-width: 736px) {
  #top .m-top-vision .left {
    position: static;
    width: 100%;
    min-width: 100%; } }

#top .m-top-vision .right {
  width: 56%;
  margin: 0 auto;
  position: absolute;
  top: 48%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%); }

#top .m-top-vision .right:before {
  content: "";
  width: 94.0484%;
  height: 100%;
  position: absolute;
  display: block;
  right: -17px;
  top: 17px;
  border-top: 3px solid #fae501;
  border-bottom: 3px solid #fae501;
  border-left: 3px solid #fae501;
  border-right: 3px solid #fae501; }

@media screen and (max-width: 736px) {
  #top .m-top-vision .right:before {
    width: 106%;
    right: -3%;
    top: -13px; } }

@media screen and (max-width: 736px) {
  #top .m-top-vision .right {
    width: 92%;
    position: relative;
    top: 12%;
    right: 0;
    -webkit-transform: translate(0%, -12%);
    transform: translate(0%, -12%); } }

#top .m-top-vision .right .text {
  padding: 65px 50px;
  background: #111d30;
  position: relative;
  color: #ffffff; }

@media screen and (max-width: 975px) {
  #top .m-top-vision .right .text {
    padding: 50px 35px; } }

@media screen and (max-width: 736px) {
  #top .m-top-vision .right .text {
    padding: 20px 20px; } }

#top .m-top-vision .right .text .content-title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 4rem;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700; }

@media screen and (max-width: 975px) {
  #top .m-top-vision .right .text .content-title {
    font-size: 3.7rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-vision .right .text .content-title {
    font-size: 2.7rem; } }

#top .m-top-vision .right .text .content-title .mini {
  padding-left: 10px;
  font-size: 2.8rem; }

@media screen and (max-width: 975px) {
  #top .m-top-vision .right .text .content-title .mini {
    font-size: 2.5rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-vision .right .text .content-title .mini {
    font-size: 2rem; } }

#top .m-top-vision .right .text > .title {
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 2px; }

@media screen and (max-width: 975px) {
  #top .m-top-vision .right .text > .title {
    font-size: 2rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-vision .right .text > .title {
    font-size: 1.8rem;
    letter-spacing: 1px; } }

#top .m-top-vision .right .text .read {
  font-size: 1.5rem;
  line-height: 1.7; }

@media screen and (max-width: 975px) {
  #top .m-top-vision .right .text .read {
    font-size: 1.3rem; } }

#top .m-top-news .content-title {
  font-size: 5rem; }

@media screen and (max-width: 975px) {
  #top .m-top-news .content-title {
    font-size: 4.3rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-news .content-title {
    font-size: 3rem; } }

@media screen and (max-width: 975px) {
  #top .m-top-news .content-title .mini {
    font-size: 2.5rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-news .content-title .mini {
    font-size: 2rem; } }

#top .m-top-news .list {
  overflow: hidden; }

#top .m-top-news .list li {
  display: table;
  padding: 15px 18px;
  margin-bottom: 8px;
  width: 100%;
  background: #ffffff; }

#top .m-top-news .list li:last-child {
  margin-bottom: 0px; }

@media screen and (max-width: 736px) {
  #top .m-top-news .list li {
    display: block;
    padding: 8px 9px; } }

#top .m-top-news .list li .category {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 4px;
  width: 10%;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 2px;
  background: #e5d200; }

@media screen and (max-width: 736px) {
  #top .m-top-news .list li .category {
    padding: 4px 4px;
    font-size: 1.2rem; } }

#top .m-top-news .list li .data {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  width: 130px;
  color: #a0a0a0; }

@media screen and (max-width: 736px) {
  #top .m-top-news .list li .data {
    padding-left: 10px;
    width: 90%;
    font-size: 1.2rem; } }

#top .m-top-news .list li .text {
  display: table-cell;
  vertical-align: middle; }

@media screen and (max-width: 736px) {
  #top .m-top-news .list li .text {
    display: block;
    margin-top: 3px;
    font-size: 1.5rem;
    line-height: 1.4; } }

#top .m-top-profile {
  position: relative;
  width: 100%; }

#top .m-top-profile .box {
  z-index: 5;
  display: -webkit-box;
  display: flex;
  align-content: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  width: 50%;
  position: absolute;
  top: -20px;
  left: -110px;
  background: #fff; }

@media screen and (max-width: 975px) {
  #top .m-top-profile .box {
    left: 0px; } }

@media screen and (max-width: 736px) {
  #top .m-top-profile .box {
    display: block;
    width: 100%;
    position: relative;
    top: 0px; } }

#top .m-top-profile .left {
  padding: 70px 80px 100px 80px;
  background: #ffffff; }

@media screen and (max-width: 975px) {
  #top .m-top-profile .left {
    padding: 30px 30px; } }

@media screen and (max-width: 736px) {
  #top .m-top-profile .left {
    padding: 20px 20px; } }

#top .m-top-profile .left .content-title {
  margin-bottom: 10px;
  color: #003b90;
  font-size: 5rem;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700; }

@media screen and (max-width: 975px) {
  #top .m-top-profile .left .content-title {
    font-size: 4.3rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-profile .left .content-title {
    font-size: 3rem; } }

#top .m-top-profile .left .content-title .mini {
  font-size: 2.8rem; }

@media screen and (max-width: 975px) {
  #top .m-top-profile .left .content-title .mini {
    font-size: 2.5rem; } }

@media screen and (max-width: 736px) {
  #top .m-top-profile .left .content-title .mini {
    font-size: 2rem; } }

#top .m-top-profile .left .list dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  padding: 26px 10px 12px 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #151515; }

#top .m-top-profile .left .list dl:first-child {
  padding: 10px 10px 12px 0; }

#top .m-top-profile .left .list dl dt {
  width: 90px; }

@media screen and (max-width: 975px) {
  #top .m-top-profile .left .list dl dt {
    width: 30%; } }

@media screen and (max-width: 975px) {
  #top .m-top-profile .left .list dl dd {
    width: 70%; } }

#top .m-top-profile .images {
  width: 100%;
  height: auto;
  background: #ededed; }

@media screen and (min-width: 1850px) {
  #top .m-top-profile .images {
    height: 620px; } }

@media screen and (max-width: 975px) {
  #top .m-top-profile .images {
    height: 400px; } }

@media screen and (max-width: 736px) {
  #top .m-top-profile .images {
    height: auto;
    position: relative; } }

#top .m-top-profile .images img {
  width: 100%;
  max-width: 1590px;
  position: relative;
  right: 0;
  top: 0; }

@media screen and (min-width: 1850px) {
  #top .m-top-profile .images img {
    position: absolute;
    right: -10%;
    left: 0;
    margin: auto; } }

@media screen and (max-width: 975px) {
  #top .m-top-profile .images img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto; } }

@media screen and (max-width: 736px) {
  #top .m-top-profile .images img {
    position: relative; } }

/**********************************
 * Layer Style
**********************************/
/**=========================================
* contact
* お問い合わせページ
=========================================*/
#layer .m-contact {
  background-image: url(../images/contact_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 605px; }

@media screen and (max-width: 975px) {
  #layer .m-contact {
    height: 500px; } }

@media screen and (max-width: 736px) {
  #layer .m-contact {
    background-image: url(../images/contact_sp.png);
    height: 380px; } }

#layer .m-layer-step .content-title {
  font-size: 4.6rem; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .content-title {
    font-size: 4.3rem; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .content-title {
    font-size: 3rem; } }

#layer .m-layer-step .content-text {
  font-size: 1.6rem; }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .content-text {
    font-size: 1.5rem; } }

#layer .m-layer-step .step-box {
  padding: 65px 0 10px 0;
  margin: 0 auto;
  width: 950px; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box {
    padding: 40px 0 10px 0;
    width: 100%; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box {
    padding: 20px 0 0px 0; } }

#layer .m-layer-step .step-box .list {
  padding: 0 32px 0 0;
  position: relative; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list {
    width: 33%;
    padding: 0 18px 0 0; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list {
    width: 33%;
    padding: 0 2px 0 0; } }

#layer .m-layer-step .step-box .list:last-child {
  padding: 0 0px 0 0; }

#layer .m-layer-step .step-box .list .box {
  width: 100%;
  height: 98px; }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .box {
    height: 78px; } }

#layer .m-layer-step .step-box .list .box .number {
  color: #ffffff;
  font-size: 3rem;
  margin: 0 30px 0 0;
  display: block;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  font-style: initial; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list .box .number {
    margin: 0 14px 0 0; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .box .number {
    font-size: 1.5rem; } }

#layer .m-layer-step .step-box .list .box .text {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list .box .text {
    font-size: 1.4rem; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .box .text {
    font-size: 0.9rem;
    letter-spacing: 0px; } }

#layer .m-layer-step .step-box .list .blue-bg {
  background: #2d5894; }

#layer .m-layer-step .step-box .list .blue-bg:after {
  content: "";
  border-left: 30px solid #2d5894; }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .blue-bg:after {
    border-left: 25px solid #2d5894; } }

#layer .m-layer-step .step-box .list .gray-bg {
  background: #cacaca; }

#layer .m-layer-step .step-box .list .gray-bg:after {
  content: "";
  border-left: 30px solid #cacaca; }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .gray-bg:after {
    border-left: 25px solid #cacaca; } }

#layer .m-layer-step .step-box .list .step-01 {
  padding: 0 40px; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list .step-01 {
    padding: 0 10px; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .step-01 {
    display: block;
    padding: 10px 10px 5px 15px; } }

#layer .m-layer-step .step-box .list .step-01:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 48px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 48px solid transparent;
  position: absolute;
  right: -28px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list .step-01:after {
    right: -42px;
    z-index: 5; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .step-01:after {
    right: -53px;
    border-top: 39px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 39px solid transparent; } }

#layer .m-layer-step .step-box .list .step-02 {
  padding: 0 20px 0 50px; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list .step-02 {
    padding: 0 0px 0 20px; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .step-02 {
    display: block;
    padding: 10px 10px 5px 35px; } }

#layer .m-layer-step .step-box .list .step-02:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 48px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 48px solid transparent;
  position: absolute;
  right: -28px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list .step-02:after {
    right: -42px;
    z-index: 5; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .step-02:after {
    right: -53px;
    border-top: 39px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 39px solid transparent; } }

#layer .m-layer-step .step-box .list .step-02:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 48px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 48px solid transparent;
  border-left: 30px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block; }

#layer .m-layer-step .step-box .list .step-03 {
  padding: 0 40px 0 50px; }

@media screen and (max-width: 975px) {
  #layer .m-layer-step .step-box .list .step-03 {
    padding: 0 0 0 30px; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-step .step-box .list .step-03 {
    display: block;
    padding: 10px 5px 10px 35px; } }

#layer .m-layer-step .step-box .list .step-03:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 48px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 48px solid transparent;
  border-left: 30px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block; }

#layer .m-layer-step .step-box .list .step-03:after {
  display: none; }

#layer .m-form {
  padding: 10px 30px 0px 20px; }

@media screen and (max-width: 975px) {
  #layer .m-form {
    padding: 0px; } }

#layer .m-form .form-item {
  margin-bottom: 25px; }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item {
    margin-bottom: 18px; } }

#layer .m-form .form-item:last-child {
  margin-bottom: 0px; }

#layer .m-form .form-item .item-left {
  width: 222px; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-left {
    width: auto;
    margin-bottom: 10px; } }

#layer .m-form .form-item .item-left .heading {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin: 5px 0 0; }

#layer .m-form .form-item .item-left .heading .text {
  font-size: 1.6rem;
  font-weight: bold; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-left .heading .text {
    margin-right: 20px; } }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-left .heading .text {
    font-size: 1.3rem; } }

#layer .m-form .form-item .item-left .heading .tag {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  background: #2d5894;
  border-radius: 15px;
  text-align: center;
  padding: 5px 10px;
  font-style: initial;
  letter-spacing: 1px; }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-left .heading .tag {
    padding: 2px 8px;
    font-size: 1.2rem; } }

#layer .m-form .form-item .item-right {
  width: 76%;
  margin-top: 5px; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-right {
    width: 100%; } }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-right {
    margin-top: 0px; } }

#layer .m-form .form-item .item-right .error {
  color: #D90009;
  margin-bottom: 10px;
  padding-left: 2px;
  line-height: 2;
  display: block;
  font-weight: normal; }

#layer .m-form .form-item .item-right .item-flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start; }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-right .item-flex {
    display: block; } }

#layer .m-form .form-item .item-right .item-flex .input-box {
  width: 50%;
  display: table; }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-right .item-flex .input-box {
    width: 100%;
    margin-bottom: 10px; }
  #layer .m-form .form-item .item-right .item-flex .input-box:last-child {
    margin-bottom: 0px; } }

#layer .m-form .form-item .item-right .item-flex .input-box .heading {
  padding: 0 0px 0 15px;
  width: 60px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-right .item-flex .input-box .heading {
    padding: 0 0px 0 0px; } }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-right .item-flex .input-box .heading {
    width: 40px; } }

#layer .m-form .form-item .item-right .item-flex .input-box .input-inner {
  width: auto;
  display: table-cell;
  vertical-align: middle; }

#layer .m-form .form-item .item-right .item-flex .input-box .input-inner .c_input {
  padding: 6px 12px;
  width: 100%;
  border: none;
  background: #fff; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-right .item-flex .input-box .input-inner .c_input {
    padding: 11px 12px; } }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-right .item-flex .input-box .input-inner .c_input {
    padding: 16px 12px; } }

#layer .m-form .form-item .item-right .input-inner-max {
  width: 100%;
  margin-left: 60px; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-right .input-inner-max {
    margin-left: 0px; } }

#layer .m-form .form-item .item-right .input-inner-max .c_input {
  padding: 6px 12px;
  width: 100%;
  border: none;
  background: #fff; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-right .input-inner-max .c_input {
    padding: 11px 12px; } }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-right .input-inner-max .c_input {
    padding: 16px 12px; } }

#layer .m-form .form-item .item-right .input-inner-max .c_textarea {
  padding: 6px 12px;
  width: 100%;
  border: none; }

@media screen and (max-width: 975px) {
  #layer .m-form .form-item .item-right .input-inner-max .c_textarea {
    padding: 11px 12px; } }

@media screen and (max-width: 736px) {
  #layer .m-form .form-item .item-right .input-inner-max .c_textarea {
    padding: 16px 12px; } }

#layer .contact-btn {
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-right: 30px;
  width: 100%; }

@media screen and (max-width: 975px) {
  #layer .contact-btn {
    padding-right: 0px; } }

#layer .contact-btn .btn-box {
  float: right; }

@media screen and (max-width: 736px) {
  #layer .contact-btn .btn-box {
    float: none;
    text-align: center; } }

#layer .contact-btn .btn-box .btn-submit {
  position: relative;
  padding: 15px 80px;
  border: 1px solid #ffffff;
  background: #e5d100;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .3s ease; }

@media screen and (max-width: 736px) {
  #layer .contact-btn .btn-box .btn-submit {
    width: 100%; } }

#layer .contact-btn .btn-box .btn-submit:hover {
  background: #111d30; }

#layer .contact-btn .btn-box .btn-submit:hover:after {
  transition: all .3s ease;
  right: 18px; }

#layer .contact-btn .btn-box .btn-submit::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 22px;
  margin-top: -4px; }

#layer .contact-btn .btn-box .btn-back {
  position: relative;
  margin-right: 5px;
  padding: 15px 50px 15px 70px;
  border: 1px solid #ffffff;
  background: #a7a7a7;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .3s ease; }

@media screen and (max-width: 736px) {
  #layer .contact-btn .btn-box .btn-back {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 6px; } }

#layer .contact-btn .btn-box .btn-back:hover {
  background: #111d30; }

#layer .contact-btn .btn-box .btn-back:hover:before {
  transition: all .3s ease;
  left: 18px; }

#layer .contact-btn .btn-box .btn-back::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 22px;
  margin-top: -4px; }

@media screen and (max-width: 736px) {
  #layer .contact-btn .btn-compbox {
    text-align: center; } }

#layer .contact-btn .btn-compbox .btn-top {
  position: relative;
  display: block;
  text-align: center;
  margin: 50px auto 0;
  width: 50%;
  padding: 25px 80px;
  border: 1px solid #ffffff;
  background: #e5d100;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .3s ease; }

@media screen and (max-width: 736px) {
  #layer .contact-btn .btn-compbox .btn-top {
    width: 100%;
    margin: 10px auto 0; } }

#layer .contact-btn .btn-compbox .btn-top:hover {
  background: #111d30; }

#layer .contact-btn .btn-compbox .btn-top:hover:after {
  transition: all .3s ease;
  right: 18px; }

#layer .contact-btn .btn-compbox .btn-top::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 22px;
  margin-top: -4px; }

/**=========================================
* business
* 事業内容ページ
=========================================*/
#layer .m-business {
  background-image: url(../images/business_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 605px; }

@media screen and (max-width: 975px) {
  #layer .m-business {
    height: 500px; } }

@media screen and (max-width: 736px) {
  #layer .m-business {
    background-image: url(../images/business_sp.png);
    height: 380px; } }

#layer .business-list {
  position: relative;
  padding-bottom: 135px; }

@media screen and (max-width: 975px) {
  #layer .business-list {
    padding-bottom: 100px; } }

@media screen and (max-width: 736px) {
  #layer .business-list {
    padding-bottom: 80px; } }

#layer .business-list .business-title {
  position: absolute;
  left: -23px;
  top: -38px; }

@media screen and (max-width: 975px) {
  #layer .business-list .business-title {
    left: -20px;
    top: -18px; } }

@media screen and (max-width: 736px) {
  #layer .business-list .business-title {
    left: -13px;
    top: -5px;
    padding-bottom: 0px; } }

#layer .business-list .business-title .number {
  margin-right: 10px;
  font-size: 10rem;
  color: #003b90;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700; }

@media screen and (max-width: 975px) {
  #layer .business-list .business-title .number {
    font-size: 8rem; } }

@media screen and (max-width: 736px) {
  #layer .business-list .business-title .number {
    margin-right: 4px;
    font-size: 6rem;
    line-height: 1; } }

#layer .business-list .business-title .content-title {
  font-size: 4rem;
  color: #003b90;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 0;
  margin-top: 2px; }

@media screen and (max-width: 975px) {
  #layer .business-list .business-title .content-title {
    font-size: 3rem;
    line-height: 0.9; } }

@media screen and (max-width: 736px) {
  #layer .business-list .business-title .content-title {
    font-size: 2.2rem;
    line-height: 1; } }

#layer .business-list .business-title .content-title .kana {
  padding: 10px;
  display: inline-block;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 1px;
  background: #131313; }

@media screen and (max-width: 975px) {
  #layer .business-list .business-title .content-title .kana {
    font-size: 1.5rem; } }

@media screen and (max-width: 736px) {
  #layer .business-list .business-title .content-title .kana {
    font-size: 1.1rem; } }

#layer .business-list .left {
  width: 530px;
  padding-top: 60px; }

@media screen and (max-width: 975px) {
  #layer .business-list .left {
    width: 52%; } }

@media screen and (max-width: 736px) {
  #layer .business-list .left {
    width: 100%;
    padding-top: 40px; } }

#layer .business-list .right {
  width: 426px;
  margin-top: 82px; }

@media screen and (max-width: 975px) {
  #layer .business-list .right {
    width: 43%;
    margin-top: 65px; } }

@media screen and (max-width: 736px) {
  #layer .business-list .right {
    width: 100%;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px dotted; } }

#layer .business-list .right .title {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4; }

@media screen and (max-width: 975px) {
  #layer .business-list .right .title {
    font-size: 2rem; } }

@media screen and (max-width: 736px) {
  #layer .business-list .right .title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -1px; } }

#layer .business-list .right .text {
  font-size: 1.6rem;
  line-height: 1.7; }

@media screen and (max-width: 975px) {
  #layer .business-list .right .text {
    font-size: 1.4rem; } }

@media screen and (max-width: 736px) {
  #layer .business-list .right .text {
    font-size: 1.3rem;
    text-align: center; } }

/**=========================================
* service
* 実績ページ
=========================================*/
#layer .m-service {
  background-image: url(../images/service_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 605px; }

@media screen and (max-width: 975px) {
  #layer .m-service {
    height: 500px; } }

@media screen and (max-width: 736px) {
  #layer .m-service {
    background-image: url(../images/service_sp.png);
    height: 380px; } }

#layer .m-service-box {
  padding-bottom: 50px; }

@media screen and (max-width: 736px) {
  #layer .m-service-box {
    margin-bottom: 30px; } }

#layer .m-service-box .service-title {
  margin-bottom: 12px; }

#layer .m-service-box .service-title .content-title {
  margin-bottom: 0px;
  font-size: 4.6rem; }

@media screen and (max-width: 975px) {
  #layer .m-service-box .service-title .content-title {
    font-size: 4rem; } }

@media screen and (max-width: 736px) {
  #layer .m-service-box .service-title .content-title {
    font-size: 3rem; } }

#layer .m-service-box .service-title .content-title .mini {
  margin-left: 5px;
  font-size: 1.8rem; }

@media screen and (max-width: 975px) {
  #layer .m-service-box .service-title .content-title .mini {
    font-size: 1.6rem; } }

@media screen and (max-width: 736px) {
  #layer .m-service-box .service-title .content-title .mini {
    display: none; } }

#layer .m-service-box .left {
  width: 50%;
  box-shadow: 0px 20px 15px -20px rgba(0, 0, 0, 0.5); }

@media screen and (max-width: 975px) {
  #layer .m-service-box .left {
    width: 44%; } }

@media screen and (max-width: 736px) {
  #layer .m-service-box .left {
    width: 100%; } }

#layer .m-service-box .right {
  width: 46%; }

@media screen and (max-width: 975px) {
  #layer .m-service-box .right {
    width: 52%; } }

@media screen and (max-width: 736px) {
  #layer .m-service-box .right {
    width: 100%;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dotted; } }

#layer .m-service-box .right .text {
  line-height: 1.6;
  font-size: 1.5rem; }

@media screen and (max-width: 975px) {
  #layer .m-service-box .right .text {
    font-size: 1.4rem; } }

@media screen and (max-width: 736px) {
  #layer .m-service-box .right .text {
    font-size: 1.2rem; } }

#layer .m-service-box .right .btn {
  width: 80%;
  margin: 30px auto 0; }

@media screen and (max-width: 736px) {
  #layer .m-service-box .right .btn {
    width: 80%; } }

#layer .m-service-box .right .btn a {
  position: relative;
  display: block;
  padding: 15px 80px;
  border: 1px solid #ffffff;
  background: #e5d100;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .3s ease; }

@media screen and (max-width: 975px) {
  #layer .m-service-box .right .btn a {
    padding: 15px 40px;
    font-size: 1.6rem;
    text-align: center; } }

@media screen and (max-width: 736px) {
  #layer .m-service-box .right .btn a {
    width: 100%; } }

#layer .m-service-box .right .btn a:hover {
  background: #111d30;
  opacity: 1; }

#layer .m-service-box .right .btn a:hover:after {
  transition: all .3s ease;
  right: 18px; }

#layer .m-service-box .right .btn a::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 22px;
  margin-top: -4px; }

#layer .service-detail .title {
  margin-bottom: 10px;
  font-size: 3.4rem;
  font-weight: bold;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  color: #003b90; }

@media screen and (max-width: 975px) {
  #layer .service-detail .title {
    font-size: 3rem; } }

@media screen and (max-width: 736px) {
  #layer .service-detail .title {
    font-size: 3.2rem; } }

#layer .service-detail .list li {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px dotted #151515;
  font-weight: bold;
  letter-spacing: 1px; }

@media screen and (max-width: 736px) {
  #layer .service-detail .list li {
    font-size: 1.4rem; } }

#layer .service-detail .list li:last-child {
  border-bottom: 1px dotted #151515; }

#layer .service-detail .list li .category {
  padding: 10px 0;
  margin-right: 40px;
  display: inline-block;
  width: 160px;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold; }

@media screen and (max-width: 975px) {
  #layer .service-detail .list li .category {
    margin-right: 20px;
    font-size: 1.5rem; } }

@media screen and (max-width: 736px) {
  #layer .service-detail .list li .category {
    background: #2d5894;
    padding: 6px 0;
    width: 30%;
    margin-right: 10px;
    font-size: 1.3rem; } }

#layer .service-detail .list li .blue {
  background: #2d5894; }

#layer .service-detail .list li .rightblue {
  background: #337caf; }

@media screen and (max-width: 975px) {
  #layer .service-detail .list li .text {
    width: 70%; } }

@media screen and (max-width: 736px) {
  #layer .service-detail .list li .text {
    width: 65%;
    line-height: 1.3; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-service .m-bg-gray:nth-child(even) {
    background: #ffffff; } }

#layer .m-golf {
  background-image: url(../images/service_golf_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 605px; }

#top .m-golf {
  background-image: url(../images/service_golf_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 605px; }

@media screen and (max-width: 975px) {
  #layer .m-golf {
    height: 500px; } }

@media screen and (max-width: 736px) {
  #layer .m-golf {
    background-image: url(../images/service_golf_sp.png);
    height: 380px; } }

#layer .m-golf-box {
  padding-bottom: 50px; }

@media screen and (max-width: 736px) {
  #layer .m-golf-box {
    margin-bottom: 30px; } }

#layer .m-golf-box .golf-title {
  margin-bottom: 12px; }

#layer .m-golf-box .golf-title .content-title {
  margin-bottom: 0px;
  font-size: 4.6rem; }

@media screen and (max-width: 975px) {
  #layer .m-golf-box .golf-title .content-title {
    font-size: 4rem; } }

@media screen and (max-width: 736px) {
  #layer .m-golf-box .golf-title .content-title {
    font-size: 3rem; } }

#layer .m-golf-box .golf-title .content-title .mini {
  margin-left: 5px;
  font-size: 1.8rem; }

@media screen and (max-width: 975px) {
  #layer .m-golf-box .golf-title .content-title .mini {
    font-size: 1.6rem; } }

@media screen and (max-width: 736px) {
  #layer .m-golf-box .golf-title .content-title .mini {
    display: none; } }

#layer .m-golf-box .left {
  width: 50%;
  box-shadow: 0px 20px 15px -20px rgba(0, 0, 0, 0.5); }

@media screen and (max-width: 975px) {
  #layer .m-golf-box .left {
    width: 44%; } }

@media screen and (max-width: 736px) {
  #layer .m-golf-box .left {
    width: 100%; } }

#layer .m-golf-box .right {
  width: 46%; }

@media screen and (max-width: 975px) {
  #layer .m-golf-box .right {
    width: 52%; } }

@media screen and (max-width: 736px) {
  #layer .m-golf-box .right {
    width: 100%;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dotted; } }

#layer .m-golf-box .right .text {
  line-height: 1.6;
  font-size: 1.5rem; }

@media screen and (max-width: 975px) {
  #layer .m-golf-box .right .text {
    font-size: 1.4rem; } }

@media screen and (max-width: 736px) {
  #layer .m-golf-box .right .text {
    font-size: 1.2rem; } }

#layer .m-golf-box .right .btn {
  width: 80%;
  margin: 30px auto 0; }

@media screen and (max-width: 736px) {
  #layer .m-golf-box .right .btn {
    width: 80%; } }

#layer .m-golf-box .right .btn a {
  position: relative;
  display: block;
  padding: 15px 80px;
  border: 1px solid #ffffff;
  background: #e5d100;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all .3s ease; }

@media screen and (max-width: 975px) {
  #layer .m-golf-box .right .btn a {
    padding: 15px 40px;
    font-size: 1.6rem;
    text-align: center; } }

@media screen and (max-width: 736px) {
  #layer .m-golf-box .right .btn a {
    width: 100%; } }

#layer .m-golf-box .right .btn a:hover {
  background: #111d30;
  opacity: 1; }

#layer .m-golf-box .right .btn a:hover:after {
  transition: all .3s ease;
  right: 18px; }

#layer .m-golf-box .right .btn a::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 22px;
  margin-top: -4px; }

/**=========================================
* company
* COMPANYページ
=========================================*/
#layer .m-company {
  background-image: url(../images/company_pc.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 605px; }

@media screen and (max-width: 975px) {
  #layer .m-company {
    height: 500px; } }

@media screen and (max-width: 736px) {
  #layer .m-company {
    background-image: url(../images/company_sp.png);
    height: 380px; } }

#layer .m-layer-company {
  padding: 70px 0 80px 0; }

@media screen and (max-width: 975px) {
  #layer .m-layer-company {
    padding: 60px 0 0px 0; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-company {
    padding: 40px 0 0px 0; } }

@media screen and (max-width: 975px) {
  #layer .m-company-box {
    padding: 0px 30px 60px 30px; } }

@media screen and (max-width: 736px) {
  #layer .m-company-box {
    padding: 0px 20px 40px 20px; } }

#layer .m-company-box .content-title {
  font-size: 4.6rem;
  margin-bottom: 10px; }

@media screen and (max-width: 975px) {
  #layer .m-company-box .content-title {
    font-size: 4rem; } }

@media screen and (max-width: 736px) {
  #layer .m-company-box .content-title {
    font-size: 3rem; } }

#layer .m-company-box .list li {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px dotted #151515;
  font-weight: bold;
  letter-spacing: 1px; }

@media screen and (max-width: 736px) {
  #layer .m-company-box .list li {
    -webkit-box-align: start;
    align-items: flex-start;
    font-size: 1.4rem; } }

#layer .m-company-box .list li:last-child {
  border-bottom: 1px dotted #151515; }

#layer .m-company-box .list li .category {
  padding: 10px 0;
  margin-right: 40px;
  display: inline-block;
  width: 160px;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold; }

@media screen and (max-width: 975px) {
  #layer .m-company-box .list li .category {
    margin-right: 20px;
    font-size: 1.5rem; } }

@media screen and (max-width: 736px) {
  #layer .m-company-box .list li .category {
    background: #2d5894;
    padding: 6px 0;
    width: 30%;
    margin-right: 10px;
    font-size: 1.3rem; } }

#layer .m-company-box .list li .blue {
  background: #2d5894; }

#layer .m-company-box .list li .rightblue {
  background: #337caf; }

@media screen and (max-width: 975px) {
  #layer .m-company-box .list li .text {
    width: 70%; } }

@media screen and (max-width: 736px) {
  #layer .m-company-box .list li .text {
    width: 65%;
    line-height: 1.3; } }

#layer .m-layer-technical {
  padding: 0px 0 80px 0; }

@media screen and (max-width: 975px) {
  #layer .m-layer-technical {
    padding: 0px 30px 60px 30px; } }

@media screen and (max-width: 736px) {
  #layer .m-layer-technical {
    padding: 0px 20px 40px 20px; } }

#layer .m-technical-box .content-title {
  font-size: 4.6rem;
  margin-bottom: 10px; }

@media screen and (max-width: 975px) {
  #layer .m-technical-box .content-title {
    font-size: 4rem; } }

@media screen and (max-width: 736px) {
  #layer .m-technical-box .content-title {
    font-size: 3rem; } }

#layer .m-technical-box .list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start; }

#layer .m-technical-box .list li {
  width: 305px; }

@media screen and (max-width: 975px) {
  #layer .m-technical-box .list li {
    width: 47%;
    margin-top: 50px; }
  #layer .m-technical-box .list li:nth-child(-n+2) {
    margin-top: 0px; } }

@media screen and (max-width: 736px) {
  #layer .m-technical-box .list li {
    width: 100%;
    margin-top: 40px; }
  #layer .m-technical-box .list li:nth-child(2) {
    margin-top: 40px; } }

#layer .m-technical-box .list li img {
  width: 100%; }

#layer .m-technical-box .list li .title {
  margin: 20px 0 15px 0;
  padding: 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.3px; }

@media screen and (max-width: 975px) {
  #layer .m-technical-box .list li .title {
    margin: 20px 0 10px 0; } }

@media screen and (max-width: 736px) {
  #layer .m-technical-box .list li .title {
    margin: 14px 0 5px 0;
    font-size: 2rem; } }

#layer .m-technical-box .list li .text {
  padding: 0 10px;
  font-size: 1.5rem;
  color: #494949; }

@media screen and (max-width: 736px) {
  #layer .m-technical-box .list li .text {
    font-size: 1.4rem; } }

/**
 * State Style
 */
.is-hidden {
  z-index: -1;
  display: none; }

.is-vidible {
  display: block; }

/**=========================================
* br
* 改行制限
=========================================*/
.br-sp-block {
  display: none; }

@media screen and (max-width: 975px) {
  .br-sp-block {
    display: block; } }

.br-pc-block {
  display: block; }

@media screen and (max-width: 975px) {
  .br-pc-block {
    display: none; } }

p.blue-bg {
    background: #2d5894;
}

.to-loader a {
    color: #000000;
    vertical-align: middle;
    text-decoration: none;
}
.to-loader a:link {
    color: #000000;
    vertical-align: middle;
    text-decoration: underline;
}
.to-loader a img {
    color: #000000;
    vertical-align: bottom;
    margin: 0.5rem;
    width: 2.4rem;
}

.downloadable {
    display: inline-block;
}

/**=========================================
* content-apply-title
* アプリコンテンツタイトル
=========================================*/
.content-apply-title {
  margin-bottom: 10px;
  color: #003b90;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700; }

@media screen and (max-width: 736px) {
  .content-apply-title {
    margin-bottom: 5px; } }

.content-apply-title .mini {
  padding-left: 10px;
  font-size: 2.8rem; }

@media screen and (max-width: 736px) {
  .content-apply-title .mini {
    padding-left: 5px; } }

/**=========================================
* content-apply-title
* アプリコンテンツタイトル
=========================================*/
.content-apply-premium-title {
  margin-bottom: 10px;
  color: #cc0000;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-weight: 700; }

@media screen and (max-width: 736px) {
  .content-apply-premium-title {
    margin-bottom: 5px; } }

.content-apply-premium-title .mini {
  padding-left: 10px;
  font-size: 2.8rem; }

@media screen and (max-width: 736px) {
  .content-apply-premium-title .mini {
    padding-left: 5px; } }
