@charset "UTF-8";
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  width: 100%;
  background: #ffffff;
  margin: 0 auto;
  padding: 0;
  color: #262626;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  body {
    min-width: 100%;
  }
}

ul,
li,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-size: 1.6rem;
}


@media only screen and (max-width: 750px) {
  ul,
  li,
  ol {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  p {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: normal;
  }
}

object {
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #262626;
  -webkit-tap-highlight-color: transparent;
}

a:link {
  color: #262626;
}

a:visited {
  color: #262626;
  text-decoration: none;
}

a:hover {
  color: rgba(38, 38, 38, 0.5);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: middle;
}

figure {
  margin: 0;
}

li img,
dt img,
dd img {
  vertical-align: middle;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  margin: 0 auto;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0px;
}

table th,
table td {
  padding: 10px;
}

h1,
h2,
h3,
h4,
h5 {
  clear: both;
  margin: 0;
  padding: 0;
}

header {
  background-color: #262626;
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}

#wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 80px;
}

@media only screen and (max-width: 750px) {
  #wrapper {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 750px) {
  #contentbox {
    top: 0;
    margin: 0;
    max-width: 100%;
    padding: 0px 0 50px;
  }
}

footer {
  margin-top: 120px;
  border-top: 1px solid #262626;
  padding-top: 25px;
}

@media only screen and (max-width: 750px) {
  footer {
    margin-top: 35px;
    padding-top: 30px;
    margin-bottom: 50px;
  }
}

.inner_pages,
.inner_pages_full {
  max-width: 1280px;
  margin: 0 auto;
}

.inner_block {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

.page_block {
  margin: 0 auto;
}

.item_block_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 750px) {
  .inner_block,
  .inner_pages {
    width: 100%;
    padding: 0;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .inner_pages_full {
    width: 100%;
    padding: 0;
  }
}

.item_box {
  margin-bottom: 50px;
}

.link_block {
  cursor: pointer;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.txt_fadein {
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.txt_fadeinleft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeinleft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeinleft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

#breadcrumbs {
  font-family: 'Raleway', sans-serif;
  padding: 15px 0 0;
  margin-left: 10px;
}

#breadcrumbs ul {
  max-width: 1280px;
  margin: 0 auto;
}

#breadcrumbs ul li {
  display: inline-block;
  color: #262626;
  font-size: 14px;
  font-size: 1.4rem;
}

#breadcrumbs ul li:after {
  content: "\3e";
  margin: 0 5px;
  color: #262626;
}

#breadcrumbs ul li:last-of-type:after {
  content: none;
}

#breadcrumbs ul li a {
  color: #262626;
}

@media only screen and (max-width: 750px) {
  #breadcrumbs {
    padding: 15px 15px 0;
  }
}

ul.page_navi {
  max-width: 1280px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1em auto;
}

ul.page_navi li a {
  color: #262626;
}

ul.page_navi li a:hover {
  border-bottom: 1px solid #262626;
}

ul.page_navi li:after {
  display: inline-block;
  vertical-align: baseline;
  content: "|";
  color: #262626;
  padding: 0 10px 0 5px;
}

ul.page_navi li:last-of-type:after {
  content: "";
  padding: 0 0 0 5px;
}

.item_table *,
.item_table *:before,
.item_table *:after,
.outline_table *,
.outline_table *:before,
.outline_table *:after {
  box-sizing: border-box;
}

.item_table {
  margin: 0 0 20px;
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-size: 1.6rem;
}

.item_table th,
.item_table td {
  padding: 10px;
  border-bottom: 1px solid #262626;
}

.item_table th {
  width: 216px;
  text-align: left;
  font-weight: normal;
}

.outline_table {
  margin: 0 auto 20px;
  max-width: 879px;
  border-collapse: collapse;
  font-size: 16px;
  font-size: 1.6rem;
}

.outline_table th,
.outline_table td {
  border-bottom: 20px solid #ffffff;
}

.outline_table th {
  padding: 5px;
  background-color: #C7C7C7;
  width: 216px;
  text-align: center;
  font-weight: normal;
  border-right: 2px solid #ffffff;
}

.outline_table td {
  padding: 5px 10px;
  background-color: #E8E8E8;
}

@media only screen and (max-width: 750px) {
  .item_table th,
  .item_table td {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid #262626;
  }
  .item_table th {
    width: 100%;
    text-align: left;
    font-weight: normal;
    border-bottom: 0px solid #262626;
  }
  .item_table th br {
    display: none;
  }
  .item_table td a {
    color: #262626;
    text-decoration: underline;
  }
  .item_table td a:hover {
    text-decoration: none;
  }
  .outline_table {
    width: 100%;
  }
  .outline_table th,
  .outline_table td {
    display: block;
    padding: 5px 15px;
    border-bottom: 0px solid #ffffff;
  }
  .outline_table th {
    width: 100%;
    border-right: 0px solid #ffffff;
    text-align: left;
  }
  .outline_table td {
    background-color: #E8E8E8;
  }
}

a.btn_01 {
  word-break: break-word;
  display: block;
  margin: 0 auto;
  width: calc(100% / 3);
  min-width: 300px;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: #262626;
  border-radius: 30px;
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
  z-index: 1 !important;
  cursor: pointer;
  font-size: 20px;
  font-size: 2rem;
}

a.btn_01:after {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../images/common/arr.svg);
  background-size: contain;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-left: 15px;
}

a.btn_01:hover {
  background: rgba(38, 38, 38, 0.8);
  color: #ffffff;
}

@media only screen and (max-width: 750px) {
  a.btn_01 {
    width: calc(100% / 2);
    min-width: 275px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  a.btn_01:after {
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }
}

a.btn_02 {
  word-break: break-word;
  display: block;
  margin: 0 auto;
  width: calc(100% / 2);
  max-width: 350px;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #3bbbef;
  background: #ffffff;
  border: 3px solid #3bbbef;
  position: relative;
  z-index: 1 !important;
  cursor: pointer;
  font-size: 24px;
  font-size: 2.4rem;
}

a.btn_02:after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 11px;
  background-image: url(../images/common/ic_arr_b.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 15px;
}

a.btn_02:hover {
  border: 3px solid #3bbbef;
  background: rgba(0, 185, 241, 0.5);
  color: #ffffff;
}

a.btn_02:hover:after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 11px;
  background-image: url(../images/common/ic_arr_w.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 15px;
}

@media only screen and (max-width: 750px) {
  a.btn_02 {
    max-width: 275px;
    min-width: 275px;
    position: relative;
    font-size: 16px;
    font-size: 1.6rem;
  }
  a.btn_02:after {
    width: 15px;
    height: 7px;
    margin-left: 5px;
  }
  a.btn_02:hover:after {
    width: 15px;
    height: 7px;
    margin-left: 5px;
  }
}

a.btn_03 {
  word-break: break-word;
  display: block;
  margin: 0 auto;
  width: calc(100% / 2);
  min-width: 430px;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: rgba(53, 167, 210, 0.7);
  border-radius: 40px;
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
  z-index: 1 !important;
  cursor: pointer;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 2px;
}

a.btn_03:hover {
  background: #35a7d2;
  color: #ffffff;
}

@media only screen and (max-width: 750px) {
  a.btn_03 {
    max-width: 275px;
    min-width: 275px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

p.right {
  text-align: right;
}

p.center {
  text-align: center;
}

.c_red {
  color: #EF280E;
}

.c_blue {
  color: #0738AB;
}

.c_green {
  color: #188663;
}

.c_black {
  color: #262626;
}

.c_pink {
  color: #FC35AF;
}

.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

.br_pcnone {
  display: none;
}

.br_spnone {
  display: inline;
}

@media only screen and (max-width: 750px) {
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none !important;
  }
  .br_pcnone {
    display: inline;
  }
  .br_spnone {
    display: none;
  }
}

.pl60 {
  padding-left: 60px;
}

@media only screen and (max-width: 750px) {
  .pl60 {
    padding-left: 0px;
  }
}
header{
  width:100%;
  background-color: #262626;
}
#head_block {
  width: 100%;
  max-width:1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#head_block .logo_box {
  flex: 20%;
}

#head_block .logo_box h1 img {
  max-width: 200px;
  vertical-align: baseline;
  margin-left: 10px;
  margin-right: 10px;
}

#head_block .navi_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex:80%;
}


#head_block nav.g_menu {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex: 8;
}

#head_block nav.g_menu a {
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  padding: 15px 0;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  flex: 20%;
  text-align: center;
}

#head_block nav.g_menu a:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background-color: transparent;
  -webkit-transition: .3s;
  transition: .3s;
}

#head_block nav.g_menu a.current:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}

#head_block nav.g_menu a:hover:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}
nav.sub_menu {
  flex: 4;
}

nav.sub_menu ul {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
nav.sub_menu ul li {
  font-size: 24px;
  font-size: 2.4rem;
}

nav.sub_menu ul li a {
  color: #ffffff;
}

nav.sub_menu ul li.navi_tel {
  margin: 0 10px 0 0;
  position: relative;
  flex: 1 1 auto;
  text-align: right;
}
@media only screen and (min-width:769px) and (max-width:1000px) {
  #head_block nav.g_menu a {
      font-size: 12px;
  }
  #head_block nav.g_menu {
      flex: 7;
  }
  nav.sub_menu ul li {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #head_block nav.g_menu {
    flex: 6;
  }
}
@media only screen and (max-width: 768px) {
  nav.sub_menu ul li.navi_tel {
      text-align: center;
  }
}

nav.sub_menu ul li.navi_tel:before {
  content: '';
  display: inline-block;
  width: 33px;
  /*画像の幅*/
  height: 27px;
  /*画像の高さ*/
  background-image: url(../images//common/ic_tel.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -3px;
  left: 0;
}

nav.sub_menu ul li.navi_mail {
  background-color: #E8E8E8;
  width: 50px;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  flex: 0 0 50px;
}

@media only screen and (max-width: 768px) {
  #head_block {
    width: 100%;
    padding: 0 0 0 15px;
  }
  #head_block .logo_box {
    padding: 10px 0;
  }
  #head_block .navi_block {
    display: none;
  }
}

.navigation {
  display: none;
}

.el_humburger {
  display: none;
}

@media only screen and (max-width: 768px) {
  .el_humburger {
    display: block;
    position: fixed;
    top: 2px;
    right: 0px;
    width: 45px;
    height: 45px;
    box-sizing: border-box;
    z-index: 10000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
    padding: 10px;
    background-color: #262626;
  }
  .js_humburgerOpen .el_humburger {
    background-color: #262626;
  }
  .el_humburger > span {
    display: block;
    width: 100%;
    margin: 0 auto 7px;
    height: 3px;
    background: #ffffff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .el_humburger > span:last-child {
    margin-bottom: 0;
  }
  .el_humburger > span:nth-last-child(2) {
    margin-bottom: 7px;
  }
  .js_humburgerOpen .el_humburger > span {
    background: #ffffff;
  }
  .js_humburgerOpen .el_humburger > span.top {
    -webkit-transform: translateY(11px) rotate(-45deg);
    -ms-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
    background: #ffffff;
  }
  .js_humburgerOpen .el_humburger > span.middle {
    opacity: 0;
  }
  .js_humburgerOpen .el_humburger > span.bottom {
    -webkit-transform: translateY(-9px) rotate(45deg);
    -ms-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
    background: #ffffff;
  }
  .el_humburgerButton.el_humburgerButton__close {
    top: 2%;
    right: 2%;
  }
  .el_humburgerButton__close > span {
    display: block;
    width: 45px;
    margin: 0 auto;
    height: 4px;
    background: #fff;
  }
  .el_humburgerButton__close > span.el_humburgerLineTop {
    -webkit-transform: translateY(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
  }
  .el_humburgerButton__close > span.el_humburgerLineBottom {
    -webkit-transform: translateY(-6px) rotate(45deg);
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
  /*ナビゲーション*/
  .navigation {
    display: none;
  }
  .navigation.js_appear {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 9999;
  }
  .navigation_screen {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(38, 38, 38, 0.96);
    z-index: 0;
    margin-top: 0px;
    padding-top: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navigation_wrapper {
    padding: 80px 20px 0;
    text-align: center;
  }
  .navigation_item {
    font-size: 16px;
    font-size: 1.6rem;
    padding: .5em 0;
    margin-bottom: 20px;
  }
  .navigation_item > a {
    color: #ffffff;
    text-decoration: none;
    display: block;
  }
  dl.mobile_navi dt {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
  }
  dl.mobile_navi dt:after {
    content: "▼";
    padding-left: 10px;
  }
  dl.mobile_navi dt.ac:after {
    content: "▲";
    padding-left: 10px;
  }
  dl.mobile_navi dd {
    margin-bottom: 20px;
  }
  dl.mobile_navi dd ul li {
    margin-bottom: 20px;
  }
  dl.mobile_navi dd ul li:last-child {
    margin-bottom: 0px;
  }
  dl.mobile_navi dd ul li a {
    font-size: 16px;
    font-size: 1.6rem;
    color: #262626;
  }
}

.js_fixed {
  position: fixed;
  width: 100%;
}

.l_raleway {
  font-family: 'Raleway', sans-serif;
}

.l_roboto {
  font-family: 'Roboto', sans-serif;
}

.main_ttl {
  margin-bottom: 20px;
  text-align: center;
}

.main_ttl span {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  border-bottom: 2px dashed #262626;
}

.ttl_block {
  text-align: center;
  margin-bottom: 50px;
}

.ttl_block p {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 750px) {
  .main_ttl {
    margin-bottom: 25px;
  }
  .ttl_block {
    margin-bottom: 30px;
  }
  .ttl_block p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#page_mv {
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
}

#page_mv .page_ttl_box {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 10px;
  background-color: #ffffff;
  width: 308px;
  height: 321px;
  text-align: center;
}

#page_mv .page_ttl_box .page_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

#page_mv .page_ttl_box .page_ttl .page_ttl_en {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  margin-bottom: 15px;
  border-bottom: 2px dashed #262626;
}

#page_mv .page_ttl_box .page_ttl p {
  font-size: 16px;
  font-size: 1.6rem;
}

.page_company {
  margin: 0 -50vw;
  background: url(../images/company/company_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_service {
  margin: 0 -50vw;
  background: url(../images/service/service_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_brand {
  margin: 0 -50vw;
  background: url(../images/brand/brand_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}
.page_VALENTINO {
  margin: 0 -50vw;
  background: url(../images/brand/GIANNIVALENTINO_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_designer {
  margin: 0 -50vw;
  background: url(../images/brand/designer_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_sports {
  margin: 0 -50vw;
  background: url(../images/brand/sports_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_original {
  margin: 0 -50vw;
  background: url(../images/brand/original_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_allianse {
  margin: 0 -50vw;
  background: url(../images/brand/alliance_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_contact {
  margin: 0 -50vw;
  background: url(../images/contact/contact_top_img.jpg) center center no-repeat fixed;
  background-size: cover;
  height: 700px;
}

.page_sub_ttl {
  margin-bottom: 20px;
  text-align: center;
}

.page_sub_ttl span {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  border-bottom: 2px dashed #262626;
  padding: 0 2em 10px;
}

.page_ttl_subblock {
  text-align: center;
  margin: 35px 0;
}

.page_ttl_subblock p {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 750px) {
  #page_mv {
    width: 100%;
  }
  #page_mv .page_ttl_box {
    left: 15px;
    width: 160px;
    height: 160px;
  }
  #page_mv .page_ttl_box .page_ttl .page_ttl_en {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .page_company {
    margin: 0 auto;
    background: url(../images/company/compant_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_service {
    margin: 0 auto;
    background: url(../images/service/service_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_brand {
    margin: 0 auto;
    background: url(../images/brand/brand_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_VALENTINO {
    margin: 0 auto;
    background: url(../images/brand/GIANNIVALENTINO_top_img_s@2x.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_designer {
    margin: 0 auto;
    background: url(../images/brand/designer_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_sports {
    margin: 0 auto;
    background: url(../images/brand/sports_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_original {
    margin: 0 auto;
    background: url(../images/brand/original_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_allianse {
    margin: 0 auto;
    background: url(../images/brand/alliance_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_contact {
    margin: 0 auto;
    background: url(../images/contact/contact_top_img_s.jpg) center top no-repeat fixed;
    background-size: contain;
    height: 364px;
  }
  .page_sub_ttl span {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 0 2em 10px;
  }
  .page_ttl_subblock p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.mv_block {
  width: 100%;
  margin: 50px auto 0;
}

#slider {
  position: relative;
}

#slider .slider-arrow {
  position: absolute;
  top: 50%;
  width: 19px;
  height: 28px;
  margin-top: -21px;
  z-index: 10;
  cursor: pointer;
}

#slider .slider-prev {
  left: 30px;
}

#slider .slider-next {
  right: 30px;
}

ul#slider li {
  position: relative;
  text-align: center;
}

ul#slider li img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.mv_center_block {
  position: absolute;
  top: 125px;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin: 0;
  padding: 0;
}

p.mv_txt {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  text-shadow:0px -2px 5px #ffffff,-2px -2px 6px #ffffff,2px 2px 9px #ffffff;
}

p.mv_txt span {
  padding-right: 20px;
  font-size: 60px;
  font-size: 6rem;
}

p.mv_txt02 {
  position: absolute;
  top: 50%;
  left: 10%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .mv_block {
    width: 100%;
  }
  .mv {
    margin: 0 auto;
  }
  ul#slider li {
    position: relative;
    text-align: center;
  }
  ul#slider li img {
    display: block;
    margin: 0 auto;
  }
  p.mv_txt {
    top: 75px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  p.mv_txt span {
    padding-right: 5px;
    font-size: 8vw;
  }
  p.mv_txt02 {
    left: 15px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #ffffff;
  }
}

.top_concept {
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  margin: 0 auto;
  width:90%;
  max-width: 1000px;
  margin: -80px auto 80px;
  border: 3px solid #262626;
  padding: 30px;
  background: #ffffff url(../images/top/bg_com.png) 45px center no-repeat;
  background-size: 300px;
}

.top_concept dl.top_concept_list {
  width: 645px;
  margin: 0 auto 20px;
}

.top_concept dl.top_concept_list dt {
  display: inline-block;
  vertical-align: top;
  background: #262626;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  width: 124px;
}

.top_concept dl.top_concept_list dd {
  display: inline-block;
  vertical-align: middle;
  padding-left: 24px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
  width: calc(100% - 148px);
}

@media only screen and (max-width: 750px) {
  .top_concept {
    z-index: 1;
    width: calc(100% - 30px);
    margin: -40px auto 80px;
    padding: 40px;
    background: #ffffff url(../images/top/bg_com.png) 30px 35px no-repeat;
    background-size: 240px;
  }
  .top_concept dl.top_concept_list {
    width: 100%;
    margin: 0 auto 20px;
  }
  .top_concept dl.top_concept_list dt {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    width: 124px;
    margin: 0 auto 15px;
  }
  .top_concept dl.top_concept_list dd {
    display: block;
    padding-left: 0px;
    font-size: 14px;
    font-size: 1.4rem;
    width: 100%;
  }
}

.top_brand {
  margin: 0 auto 80px;
  width:100%;
  max-width: 1280px;
}
@media only screen and (max-width: 1279px) {
  .top_brand {
    width: 90%;
  }
}
.top_brand .brand_window {
  margin: 20px 0 10px;
}

.top_brand .top_brand_logo {
  width: 375px;
}

.top_brand .top_brand_txt {
  width: calc(100% - 375px);
  padding-left: 25px;
}

.top_brand .top_brand_txt p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media only screen and (max-width: 750px) {
  .top_brand {
    margin: 0 auto 60px;
  }
  .top_brand .brand_window {
    margin: 20px 0 0px;
  }
  .top_brand .top_brand_logo {
    width: 100%;
  }
  .top_brand .top_brand_txt {
    width: 100%;
    padding-left: 0px;
    padding: 15px;
  }
  .top_brand .top_brand_txt p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.top_bnr {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media only screen and (max-width: 1279px) {
  .top_bnr {
    width:90%;
  }
}
.bnr01 {
  width: calc(100% / 3 - 16px);
}

.bnr01 a {
  font-family: 'Raleway', sans-serif;
  width: 100%;
  height: 200px;
  line-height: 200px;
  padding: 0 20px;
  background: #ffffff url(../images/top/bg_bnr01.jpg) center center repeat;
  position: relative;
  display: block;
  font-size: 20px;
  font-size: 2rem;
}

.bnr01 a:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 12px;
  background-image: url(../images/top/next_arrow.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 20px;
}

@media only screen and (max-width: 750px) {
  .top_bnr {
    max-width: 100%;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .bnr01 {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* ↓↓↓↓↓↓↓↓↓　SERVICE　↓↓↓↓↓↓↓↓↓ */
.service_block {
  margin-bottom: 210px;
}

.service_box {
  width:100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1279px) {
  .service_box {
    width: 90%
  }
}

.service_box .service_right {
  flex: 5;
  max-width: 524px;
  text-align: center;
}
.service_box .service_right img {
  height: auto;
}

.service_box .service_left {
  flex: 7;
  max-width: 740px;
}

.service_box .service_left p {
  line-height: 2;
  margin-left: 16px;
}
@media only screen and (max-width: 425px) {
  .service_box .service_left p {
    margin-left: 0px;
  }
}
.service_name_wrap{
  text-align: center;
}
p.service_name {
  padding-top: 60px;
  padding-bottom: 20px;
  font-size: 24px;
  font-size: 2.4rem;
}

p.service_name span {
  font-size: 18px;
  font-size: 1.8rem;
  padding-right: 27px;
}

p.fitness_txt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5 !important;
}

.fitness_block {
  background-color: #E8E8E8;
  padding: 32px 32px;
  margin-top: 17px;
  max-width: 740px;
  margin-left: 16px;
}
@media only screen and (max-width: 425px) {
  .fitness_block {
    margin-left: 0px;
  }
}

.fitness_block dl.fitness_01 {
  margin-bottom: 20px;
}

.fitness_block dl.fitness_01 dt {
  background-color: #262626;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  color: #ffffff;
  width: 100px;
  display: inline-block;
  vertical-align: top;
  line-height: 2;
}

.fitness_block dl.fitness_01 dd {
  display: inline-block;
  vertical-align: top;
  padding-left: 25px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

.fitness_block dl.fitness_02 {
  max-width: 524px;
  margin: 0 auto 55px;
}

.fitness_block dl.fitness_02 dt {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 17%;
  margin-bottom: 24px;
  text-align: center;
  color: #262626;
  font-size: 18px;
  font-size: 1.8rem;
}

.fitness_block dl.fitness_02 dt:before, .fitness_block dl.fitness_02 dt:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30%;
  height: 1px;
  border-top: 1px solid #707070;
}

.fitness_block dl.fitness_02 dt:before {
  left: 0;
}

.fitness_block dl.fitness_02 dt:after {
  right: 0;
}

.fitness_block dl.fitness_02 dd {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  font-size: 1.6rem;
}

.fitness_block dl.fitness_02 dd ul {
  display: inline-block;
  padding-left: 48px;
}

.fitness_block dl.fitness_02 dd ul li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/service/fitness_li.png);
  background-size: cover;
  width: 16px;
  height: 13px;
  margin-right: 5px;
}

.fitness_block dl.fitness_02 dd ul:first-child {
  padding-right: 70px;
}
@media only screen and (max-width: 1279px) {
  .fitness_block dl.fitness_02 dd ul:first-child {
    padding-right: 0;
  }
}

.fitness_block dl.fitness_03 {
  margin-bottom: 20px;
}

.fitness_block dl.fitness_03 dt {
  background-color: #262626;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  color: #ffffff;
  width: 100px;
  line-height: 2;
  margin-bottom: 15px;
}

.fitness_block dl.fitness_03 dd {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

@media only screen and (max-width: 750px) {
  .service_block {
    margin-bottom: 90px;
    padding: 0 15px;
  }
  .service_box {
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service_box .service_right {
    width: 100%;
    margin-bottom: 1em;
  }
  .service_box .service_left {
    width: 100%;
  }
  .service_box .service_left p {
    line-height: 1.5;
  }
  p.service_name {
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  p.service_name span {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 0;
  }
  p.fitness_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .fitness_block {
    background-color: #E8E8E8;
    padding: 15px 25px;
  }
  .fitness_block dl.fitness_01 dt {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff;
    width: 100px;
    margin: 0 auto;
    display: block;
    line-height: 1.8;
  }
  .fitness_block dl.fitness_01 dd {
    display: block;
    padding-left: 0;
    padding-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .fitness_block dl.fitness_02 {
    width: 100%;
    margin: 0 auto 25px;
  }
  .fitness_block dl.fitness_02 dt {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .fitness_block dl.fitness_02 dt:before, .fitness_block dl.fitness_02 dt:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20%;
    height: 1px;
    border-top: 1px solid #707070;
  }
  .fitness_block dl.fitness_02 dt:before {
    left: 0;
  }
  .fitness_block dl.fitness_02 dt:after {
    right: 0;
  }
  .fitness_block dl.fitness_02 dd {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .fitness_block dl.fitness_02 dd ul {
    display: inline-block;
    padding-left: 10px;
  }
  .fitness_block dl.fitness_02 dd ul li {
    padding-bottom: 5px;
  }
  .fitness_block dl.fitness_02 dd ul:first-child {
    padding-right: 0px;
  }
  .fitness_block dl.fitness_03 dt {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    color: #ffffff;
    width: 100px;
    margin: 0 auto;
    display: block;
    line-height: 1.8;
  }
  .fitness_block dl.fitness_03 dd {
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* ↓↓↓↓↓↓↓↓↓　ブランド一覧　↓↓↓↓↓↓↓↓↓ */
.brand_block .page_ttl_subblock {
  margin-bottom: 50px;
}

.brand_box {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (max-width: 1279px) {
  .brand_box {
    width: 90%;
  }
}

.brand_box .brand_left {
  flex: 1;
  max-width: 640px;
  padding: 0 35px;
  align-items: center;
  position:relative;
  background-position: center;
  background-size: cover;
  min-height: 300px;
  padding: 20px;
}

.brand_box .brand_left dl{
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
  margin-right: 20px;
}
.brand_box .brand_left dl dt {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #262626;
  padding-bottom: 15px;
}

.brand_box .brand_left dl dt span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
  padding-bottom: 15px;
}

.brand_box .brand_left dl dd {
  padding: 20px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.brand_box .brand_img {
  flex: 1;
  width: 100%;
  max-width: 640px;
  min-height: 300px;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 750px) {
  .brand_box .brand_left,
  .brand_box .brand_img   {
      min-height: 240px;
  }
}
.brand_img.valentinob{
  background-image: url(../images/brand/brand_01.jpg);
}
.brand_img.designerb{
  background-image: url(../images/brand/brand_02.jpg);
}
.brand_img.sportsb{
  background-image: url(../images/brand/brand_03.jpg);
}
.brand_img.originalb{
  background-image: url(../images/brand/brand_05.jpg);
}
.brand_img.alliansb{
  background-image: url(../images/brand/brand_04.jpg);
}

.brand_left.bgA {
  background-image: url(../images/brand/bg_brand01.jpg);

}

.brand_left.bgB {
  background-image: url(../images/brand/bg_brand02.jpg);
}

/* ↓↓↓↓↓↓↓↓↓　各ブランド　↓↓↓↓↓↓↓↓↓ */

.brand_select_box {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 130px;
  width:100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  .brand_select_box {
    width: 90%;
  }
}
.brand_block{
  margin-bottom: 130px;
}
.brand_select_box .brand_right {
  flex: 1;
  max-width: 640px;
  padding-left: 20px;
}

.brand_select_box .brand_img {
  flex: 1;
  max-width: 640px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 4px;
}

.brand_select_box .brand_img img.gianni_valentino {
  width: 546px;
}
.brand_select_img{
  width: 90%;
  max-width: 1280px;
  margin: 50px auto 0 ;
}
.brand_select_box .brand_img img {
  width: 546px;
}
ul.brand_select_img li {
  flex: 25%;
  display: inline-block;
  max-width: 150px;
}

.brand_btn {
  text-align: center;
  margin: 100px 0 0;
}

.brand_btn a {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  border: 2px dashed #262626;
  padding: 10px 15px;
}

.brand_btn a:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 11px;
  background-image: url(../images/brand/brand_btn.png);
  background-size: contain;
  vertical-align: middle;
  padding-right: 35px;
}

@media only screen and (max-width: 750px) {
  .brand_block {
    padding: 0 15px;
  }
  .brand_block .page_ttl_subblock {
    margin-bottom: 25px;
  }
  .brand_box {
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .brand_box .brand_left {
    width: 100%;
    padding: 25px;
  }
  .brand_box .brand_left dl dt {
    font-size: 14px;
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
  .brand_box .brand_left dl dt span {
    font-size: 22px;
    font-size: 2.2rem;
    padding-bottom: 5px;
  }
  .brand_box .brand_left dl dd {
    padding: 10px 0;
  }
  .brand_box .brand_img {
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  .brand_select_box {
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;

  }
  .brand_select_box .brand_right {
    width: 100%;
    padding-left: 0;
  }
  .brand_select_box .brand_img {
    width: 100%;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
  .brand_select_box .brand_img img.gianni_valentino {
    width: 75vw;
    padding: 30px 0;
  }
  ul.brand_select_img {
    text-align: center;
  }
  ul.brand_select_img li {
    display: inline-block;
    margin: 5px;
    width: 46%;
  }
}
.company_greeting{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  .company_greeting{
    width: 90%;
  }
}

.company_greeting .greeting_img {
  text-align: center;
  margin: 30px 0 50px;
}

.company_greeting .greeting_txt {
  max-width: 1064px;
  margin: 0 auto;
}

.company_greeting .greeting_txt p {
  padding-bottom: 1em;
}

.company_greeting p.greeting_name {
  padding-top: 25px;
  text-align: right;
}

@media only screen and (max-width: 750px) {
  .company_greeting {
    margin-bottom: 90px;
    padding: 0 15px;
  }
  .company_greeting .greeting_img {
    text-align: center;
    margin: 15px 0;
  }
  .company_greeting .greeting_txt {
    width: 100%;
  }
  .company_greeting p.greeting_name {
    padding-top: 25px;
    text-align: right;
  }
}

.company_profile {
  max-width: 1280px;
  margin: 40px auto 170px;
  background: #ffffff url(../images/top/bg_com.png) left top no-repeat;
}
@media only screen and (max-width: 1279px) {
  .company_profile {
    width: 90%;
  }
}

.company_profile table.item_table {
  max-width: 848px;
  margin: 0 108px 0 auto;
}

@media only screen and (max-width: 750px) {
  .company_profile {
    max-width: 100%;
    padding: 0 15px;
    margin: 0px auto 80px;
    background: #ffffff url(../images/top/bg_com.png) 15px top no-repeat;
  }
  .company_profile table.item_table {
    width: 100%;
    margin: 0  auto;
  }
}

.company_history {
  margin: 40px auto 120px;
  max-width: 1280px
}
@media only screen and (max-width: 1279px) {
  .company_history {
    width: 90%;
  }
}
@media only screen and (max-width: 750px) {
  .company_history {
    margin: 20px auto 70px;
    padding: 0 15px;
  }
}

.company_access {
  max-width: 1064px;
  margin: 40px auto 0;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 1279px) {
  .company_access  {
    width: 90%;
  }
}

.company_access .google_map {
  width: 524px;
  position: relative;
  height: 0;
  padding-bottom: 33%;
  overflow: hidden;
  margin-right: 16px;
}

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

.company_access .access_txt {
  width: 524px;
}

.company_access .access_txt ul {
  padding-bottom: 30px;
}

.company_access .access_txt ul li {
  padding-bottom: 16px;
}

@media only screen and (max-width: 750px) {
  .company_access {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 0 15px;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .company_access .google_map {
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
  }
  .company_access .access_txt {
    width: 100%;
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .company_access .access_txt ul {
    padding-bottom: 20px;
  }
  .company_access .access_txt ul li {
    padding-bottom: 10px;
  }
}

.contact_message {
  width: 80%;
  max-width: 1064px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media only screen and (max-width: 750px) {
  .contact_message {
    width: 100%;
    padding: 0 24px;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact_message p {
    font-size: 16px;
    font-size: 1.6rem;
    padding-bottom: 30px;
  }
  .contact_message p:first-child {
    text-align: center;
  }
  .contact_message p:last-child {
    text-align: right;
  }
}

.form_block *,
.form_block *:before,
.form_block *:after {
  box-sizing: border-box;
}

.form_block {
  margin: 55px auto 20px;
  width: 80%;
  max-width: 1068px;
  border-collapse: collapse;
  font-size: 20px;
  font-size: 2rem;
}

.form_block th,
.form_block td {
  padding-bottom: 1em;
}

.form_block th {
  width: 220px;
  text-align: left;
}

.form_block td {
  padding-left: 1em;
}

.form_block td a {
  color: #262626;
  text-decoration: underline;
}

.form_block td a:hover {
  text-decoration: none;
}

.form_block tr:last-of-type {
  vertical-align: top;
}

@media only screen and (max-width: 750px) {
  .form_block {
    margin: 30px auto;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .form_block th,
  .form_block td {
    display: block;
    padding-bottom: 0;
  }
  .form_block th {
    width: 100%;
    text-align: left;
    padding: 0 15px 10px;
  }
  .form_block td {
    padding: 0 15px 20px;
  }
}

.form_block option,
.form_block input[type=text],
.form_block input[type=email],
.form_block input[type=search],
.form_block input[type=url] {
  width: 100%;
  border: 1px solid #cccccc;
}

.form_block input[type=email],
.form_block input[type=text] {
  height: 2em;
}

.form_block input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_block textarea {
  width: 100%;
  border: 1px solid #cccccc;
  height: 10em;
}

.submit-btn input {
  background: #262626;
  width: 60%;
  max-width: 256px;
  min-width: 256px;
  margin: 30px 108px 30px auto;
  display: block;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  font-size: 20px;
  font-size: 2rem;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #262626;
}

.submit-btn input:hover {
  background: #E8E8E8;
  color: #262626;
}

@media only screen and (max-width: 750px) {
  .submit-btn input {
    background: #262626;
    width: 60%;
    max-width: 256px;
    min-width: 256px;
    margin: 30px auto;
    display: block;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    font-size: 20px;
    font-size: 2rem;
    color: #ffffff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 1px solid #262626;
  }
}

.select_d {
  overflow: hidden;
  width: 90%;
  text-align: center;
}

.select_d select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select_d select::-ms-expand {
  display: none;
}

.select_d.select01 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}

.select_d.select01:before {
  position: absolute;
  top: 1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.select_d.select01 select {
  padding: 8px 38px 8px 8px;
  color: #666666;
}

ul.check_d {
  width: 90%;
  margin: 2em auto;
  text-align: left;
  margin: 0.5rem 0.5rem 2rem 0.5rem;
  padding: 1rem 1rem 0.5rem 1rem;
  list-style: none;
  border: 1px solid #cccccc;
}

ul.check_d label {
  line-height: 135%;
  position: relative;
  margin: 0.5rem;
  cursor: pointer;
}

ul.check_d li {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

ul.check_d .op01 {
  position: relative;
  top: -0.375rem;
  margin: 0 1rem 0 0;
  cursor: pointer;
  outline: none;
}

ul.check_d .op01:before, ul.check_d .op01:after {
  position: absolute;
  z-index: 1;
  top: -0.125rem;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  content: '';
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 2px solid #da3c41;
  background: #ffffff;
}

ul.check_d .op01:after {
  z-index: 0;
  border: none;
}

ul.check_d .op01:checked:before {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: #da3c41;
}

ul.radio_d {
  width: 90%;
  margin: 2em auto;
  text-align: left;
  margin: 0.5rem 0.5rem 2rem 0.5rem;
  padding: 0.5rem 1rem;
  list-style: none;
  border: 1px solid #cccccc;
}

ul.radio_d label {
  font-family: Arial, sans-serif;
  line-height: 135%;
  position: relative;
  margin: 0.5rem;
  cursor: pointer;
}

ul.radio_d li {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

ul.radio_d .op01 {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
}

ul.radio_d .op01:before, ul.radio_d .op01:after {
  position: absolute;
  z-index: 1;
  top: -0.3125rem;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  content: '';
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 2px solid #da3c41;
  border-radius: 50%;
  background: #ffffff;
}

ul.radio_d .op01:after {
  z-index: 0;
  top: -0.0625rem;
  border: none;
}

ul.radio_d .op01:checked:before {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: #da3c41;
}

.submit_message {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1.6rem;
}

.submit_message h3,
.submit_message h4 {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.footer_sitemap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer_sitemap .sitemap_ttl {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-size: 2rem;
  width: 135px;
}

.footer_sitemap ul.sitemap_list {
  width: calc((100% - 135px) / 4);
  margin-bottom: 35px;
}

.footer_sitemap ul.sitemap_list li {
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 750px) {
  .footer_sitemap .sitemap_ttl {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
  .footer_sitemap ul.sitemap_list {
    width: calc(100% / 2 - 10px);
    padding: 0 15px;
    margin-bottom: 35px;
  }
  .footer_sitemap ul.sitemap_list li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.footer_block {
  border-top: 1px solid #262626;
  text-align: center;
}

.footer_block .logo_box {
  padding: 15px 0;
  width: 390px;
  margin: 0 auto;
}

.footer_block .logo_box ul {
  display: table;
}

.footer_block .logo_box ul li {
  display: table-cell;
  padding-right: 15px;
}

.footer_block .logo_box ul li:last-child {
  padding-right: 0px;
}

.footer_block ul.footer_address {
  padding-bottom: 15px;
}

.footer_block ul.footer_address li {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  padding-right: 1em;
}

@media only screen and (max-width: 750px) {
  .footer_block .logo_box {
    width: 90%;
    margin: 0 auto;
  }
  .footer_block .logo_box ul li {
    padding-right: 5px;
  }
  .footer_block ul.footer_address {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .footer_block ul.footer_address li {
    display: block;
    padding-right: 0;
    text-align: left;
  }
}

.copy_block {
  background-color: #AAAAAA;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
  padding: 10px;
}

@media only screen and (max-width: 750px) {
  .copy_block {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#page-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  font-size: 0;
  z-index: 10;
}

#page-top a {
  display: block;
}

#page-top a img {
  width: 60px;
}

#page-top a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  #page-top {
    z-index: 15;
  }
  #page-top a img {
    width: 45px;
  }
}

.sp_foot {
  display: none;
}

@media only screen and (max-width: 768px) {
  .sp_foot {
    display: block;
    background-color: #262626;
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
  }
  .sp_foot nav.sub_menu ul {
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}
