@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap);

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #292929;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight:500;
  /*font-feature-settings: "palt";*/
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
  @media screen and (max-width: 767px) {
    body {
      font-size: 4vw;
      letter-spacing: 0.2vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #ab0505;
}
a:visited {
  color: #ab0505;
}
a:hover {
  text-decoration: none;
  color: #ab0505;
}
a:active {
  color: #ab0505;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 2.2;
}
  @media screen and (max-width: 767px) {
    h1,h2,h3,h4,h5,h6 {
      line-height: 1.5;
    }
  }

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", 'Noto Serif JP', serif;
}

/*----------------------------------------------------
 フォントカラー
--------------------------------------------------- */
.fc01 {
  color: #ab0505;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  min-width: 1220px;
  overflow:hidden;
  margin: 0 auto;
  padding-top: 83px;
}
#contents {
  line-height: 2.2;
  padding-bottom: 100px;
}
#contents a:hover img{
  opacity: 0.70;
}
.wrapper {
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 767px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #page {
      padding-top: 13.33vw;
    }
    #contents {
      line-height: 1.7;
      padding-bottom: 25.33vw;
    }
    .wrapper, .inner {
      width:100%;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 83px;
  z-index: 100;
}
#header .hd_inner {
  height: 100%;
  background: rgba(255,255,255,0.95);
  border-bottom: solid 1px #D2D0D0;
}
#header .logo {
  display:inline-block;
  margin-top: 11px;
}
.site_copy {
  position: absolute;
  left: 295px;
  top: 22px;
  color: #b1b1b1;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
  @media screen and (max-width: 1200px) {
    #header .hd_inner {
      min-width: 1220px;
    }
  }
  @media screen and (max-width: 767px) {
    #header {
      height: 13.33vw;
    }
    #header .hd_inner {
      min-width: 100%;
      padding: 0 2vw;
    }
    #header .logo {
      display:inline-block;
      margin-top: 2vw;
    }
    #header .logo img {
      width: 41vw;
    }
    .site_copy {
      position: absolute;
      left: 44vw;
      letter-spacing: 0;
      top: 3vw;
      color: #b1b1b1;
      font-size: 2.13vw;
      font-weight: 500;
      line-height: 1.5;
    }
  }
  @media screen and (max-width: 374px) {
    .site_copy {
      transform: scale(0.8);
      transform-origin:0 0;
    }
  }

.hd_menu {
  position: absolute;
  right: 0;
  top: 34px;
}
.hd_menu li {
  border-left: solid 1px #8b8b8b;
}
.hd_menu li:last-child {
  border-right: solid 1px #8b8b8b;
}
.hd_menu li a {
  display: block;
  color: #8b8b8b;
  text-decoration: none;
  padding: 0 20px;
}
.hd_menu li a:hover {
  color: #ab0505;
}

/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/
#crumbs {
  background: #FAFAFA;
  padding: 7px 0;
  margin-bottom: 60px;
}
#crumbs li {
  display: inline;
  font-size: 1.4rem;
  color: #666;
}
#crumbs li a {
  display: inline-block;
  color: #666;
  padding-right: 18px;
  margin-right: 18px;
  border-right: solid 1px #666;
}
#crumbs li br {
  display: none;
}
  @media screen and (max-width: 767px) {
    #crumbs {
      padding: 1.33vw 2vw;
      margin-bottom: 13.33vw;
    }
    #crumbs li {
      font-size: 2.66vw;
    }
    #crumbs li a {
      padding-right: 4vw;
      margin-right: 4vw;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/

#ft_info {
  padding: 100px 0;
}
.ft_info_wrap {
  position: relative;
  width: 100%;
}
.ft_info_wrap::after {
  position: absolute;
  right: calc(50% - 120px);
  top: 0;
  content: "";
  width: calc(50% + 120px);
  height: 440px;
  background: url("../img/common/ft_info_img.jpg") center center no-repeat;
  background-size: cover;
}
.ft_info_wrap .inner {
  min-height: 440px;
}
.ft_info_box {
  position: absolute;
  right: 26px;
  bottom: -28px;
  z-index: 5;
  width: 490px;
  padding: 50px 0 0 60px;
}
.ft_info_box::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 150px;
  height: 1px;
  background: #555;
}
.ft_info_box dl {
  white-space: nowrap;
  margin-bottom: 48px;
}
.ft_info_box dt {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 32px;
}
.ft_info_box dd {
  padding-left: 28px;
  line-height: 2.2;
}
.ft_info_box ul {
  padding-left: 28px;
}
.ft_info_box li {
  position: relative;
}
.ft_info_box li::after {
  z-index: 2;
  position: absolute;
  right: -26px;
  top: 50%;
  content: "";
  width: 50px;
  height: 1px;
  background: #8B8B8B;
  transition: all 0.4s ease-in-out 0s;
  opacity: 1;
}
.ft_info_box li:hover::after {
  transform: rotate(-360deg);
  background: #AB0505;
}
.ft_info_box li:first-child {
  margin-bottom: 30px;
}
.ft_info_box li a {
  position: relative;
  vertical-align: bottom;
  display: block;
  width: 100%;
  padding: 15px 10px;
  margin: 0 auto;
  text-align: center;
  color: #292929;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  border: solid 1px #8B8B8B;
  overflow: hidden;
}
.ft_info_box li a:hover {
  color: #fff;
  border: solid 1px #AB0505;
}
.ft_info_box li a::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #AB0505;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}
.ft_info_box li a:hover::before {
  opacity: 1;
  left: 0;
}
.ft_info_box li a span {
  position: relative;
  z-index: 10;
}
  @media screen and (max-width: 767px) {
    #ft_info {
      padding: 13.33vw 0 0 0;
    }
    .ft_info_wrap {
      padding: 0 2vw 72vw;
    }
    .ft_info_wrap::after {
      position: absolute;
      right: 0;
      top: auto;
      bottom: 0;
      width: 100%;
      height: 58.66vw;
    }
    .ft_info_wrap .inner {
      min-height: auto;
    }
    .ft_info_box {
      position: static;
      width: 100%;
      padding: 6.66vw 0 0 0;
    }
    .ft_info_box::after {
      width: 20vw;
    }
    .ft_info_box dl {
      padding-left: 6vw;
      margin-bottom: 6.66vw;
      white-space: normal;
    }
    .ft_info_box dt {
      font-size: 4.26vw;
      line-height: 1.5;
      margin-bottom: 5vw;
    }
    .ft_info_box dd {
      padding-left: 0;
      line-height: 1.7;
    }
    .ft_info_box ul {
      padding: 0 3vw 0 1.66vw;
    }
    .ft_info_box li::after {
      right: -3.33vw;
      width: 6.66vw;
    }
    .ft_info_box li:first-child {
      margin-bottom: 5.33vw;
    }
    .ft_info_box li a {
      padding: 1.66vw 2.66vw;
      font-size: 4.26vw;
    }
  }

.ft_inner {
  position: relative;
}
.ft_inner::after {
  position: absolute;
  left: calc(50% - 306px);
  top: 0;
  content: "";
  width: calc(50% + 306px);
  height: 100%;
  background: #FAFAFA;
}
.ft_inner .wrapper {
  padding-top: 210px;
  z-index: 5;
}
.ft_info {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-bottom: 15px;
}
.ft_info dt {
  margin-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .ft_inner::after {
      left: calc(50% - 30vw);
      width: calc(50% + 30vw);
    }
    .ft_inner .wrapper {
      padding-top: 0;
    }
    .ft_info {
      font-size: 3.46vw;
      letter-spacing: 0.12vw;
      line-height: 1.5;
      padding: 0 2vw 5vw;
    }
    .ft_info dt {
      margin-bottom: 12px;
    }
    .ft_info dt img {
      width: 54.66vw;
      height: auto;
    }
    .ft_info dd {
      margin-bottom: 2vw;
    }
  }

.ft_menu {
  width: 306px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 50px 0 0 40px;
}
.ft_menu::after {
  position: absolute;
  left: 0;
  top: -25px;
  content: "";
  width: 1px;
  height: 230px;
  background: #E0E0E0;
}
.ft_menu li {
  margin-bottom: 24px;
}
.ft_menu li a {
  text-decoration: none;
  color: #292929;
}
.ft_menu li a:hover {
  color: #ab0505;
}
  @media screen and (max-width: 767px) {
    .ft_menu {
      width: 100%;
      position: relative;
      padding: 12vw 0 8vw 50%;
    }
    .ft_menu::after {
      left: calc(50% - 2vw);
      top: -5.33vw;
      height: 53.33vw;
    }
    .ft_menu ul {
      padding-left: 6vw;
    }
    .ft_menu li {
      margin-bottom: 4.4vw;
      letter-spacing: 0;
    }
  }

.copyright {
  color: #fff;
  background: #333;
  text-align: right;
  padding: 7px 0;
}
.copyright small {
  font-size: 1.2rem;
}
  @media screen and (max-width: 767px) {
    .copyright {
      padding: 1.33vw 2vw;
    }
    .copyright small {
      font-size: 2.66vw;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lower_Visual {
  height: 220px;
  background: url("../img/main/main_common.jpg") center center no-repeat;
  background-size: cover!important;
  text-shadow:1px 1px 0 rgba(255,255,255,0.5), -1px -1px 0 rgba(255,255,255,0.5),
  -1px 1px 0 rgba(255,255,255,0.5), 1px -1px 0 rgba(255,255,255,0.5),
  0px 1px 0 rgba(255,255,255,0.5),  0-1px 0 rgba(255,255,255,0.5),
  -1px 0 0 rgba(255,255,255,0.5), 1px 0 0 rgba(255,255,255,0.5);
  color: #666;
}
.page_ttl {
  line-height: 1.5;
}
.page_ttl span {
  display: block;
  font-size: 2.6rem;
  margin-bottom: 5px;
  letter-spacing: 0.2rem;
}
.page_ttl strong {
  display: block;
  letter-spacing: 0.2rem;
}
  @media screen and (max-width: 767px) {
    #lower_Visual {
      height: 33.33vw;
    }
    .page_ttl span {
      font-size: 4.53vw;
      margin-bottom: 1.33vw;
      letter-spacing: 0.5vw;
    }
    .page_ttl strong {
      font-size: 3.2vw;
      letter-spacing: 0.5vw;
    }
  }

#lower_Visual.main_service {
  background: url("../img/main/main_service.jpg") center center no-repeat;
  text-shadow: none;
  color: #fff;
}
  @media screen and (max-width: 767px) {
    #lower_Visual.main_service {
      background: url("../img/main/main_service_sp.jpg") center center no-repeat;
    }
  }

#lower_Visual.main_message {
  background: url("../img/main/main_message.jpg") center center no-repeat;
}
#lower_Visual.main_company {
  background: url("../img/main/main_company.jpg") center center no-repeat;
}
#lower_Visual.main_partner {
  background: url("../img/main/main_partner.png") center center no-repeat;
}

.sub_ttl01 {
  font-size: 10rem;
  color: #e6e4e4;
  line-height: 1;
  white-space: nowrap;
}
.sub_ttl01 span {
  display: inline-block;
  position: relative;
  line-height: 1.6;
}
.sub_ttl01 span::before {
  position: absolute;
  left: 5px;
  bottom: 0;
  content: "";
  width: 150px;
  height: 1px;
  background: #373636;
}
.sub_ttl01 .ttl_vw {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 0.65;
}
.sub_ttl01 .ttl_vw::before {
  display: none;
}
  @media screen and (max-width: 767px) {
    .sub_ttl01 {
      font-size: 13.33vw!important;
    }
    .sub_ttl01 span {
      line-height: 1;
      padding-bottom: 5.33vw;
    }
    .sub_ttl01 span::before {
      left: 0;
      width: 20vw;
    }
    .sub_ttl01 .ttl_vw {
      padding-bottom: 0;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  display:none;
}
.pagetop a:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    .pagetop {
      right: 2.66vw;
      bottom: 9.33vw;
    }
    .pagetop img {
      width: 12.53vw;
      height: auto;
    }
    .pagetop a:hover {
      opacity: 1;
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
  text-align: center;
}
.btn01 a {
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  width: 500px;
  padding: 5px 10px;
  margin: 0 auto;
  text-align: center;
  color: #292929;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  border: solid 1px #8B8B8B;
  border-left: solid 6px #8B8B8B;
  overflow: hidden;
}
.btn01 a:hover {
  color: #fff;
}
.btn01 a::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #8B8B8B;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}
.btn01 a:hover::before {
  opacity: 1;
  left: 0;
}
.btn01 a span {
  position: relative;
  z-index: 10;
}
  @media screen and (max-width: 767px) {
    .btn01 a {
      width: 86vw;
      padding: 1.66vw 2.66vw;
      font-size: 4.26vw;
      border-left: solid 1.6vw #8B8B8B;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

  /*スマホナビ*/
  @media screen and (max-width: 767px) {
    /*transition*/
    .trs {
      -webkit-transition: all .1s ease;
      -moz-transition: all .1s ease;
      -ms-transition: all .1s ease;
      -o-transition: all .1s ease;
      transition: all .1s ease;
    }
    /*trp*/
    .trp {
      -webkit-transition: opacity .1s ease;
      -moz-transition: opacity .1s ease;
      -ms-transition: opacity .1s ease;
      -o-transition: opacity .1s ease;
      transition: opacity .1s ease;
      opacity: 1;
      filter: alpha(opacity=100);
    }
    .trp:hover {
      opacity: .6;
      filter: alpha(opacity=60);
    }
    /* trs-dr */
    .trs-dr02 {
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -ms-transition-duration: .2s;
      -o-transition-duration: .2s;
      transition-duration: .2s;
    }
    .trs-dr03 {
      -webkit-transition-duration: .3s;
      -moz-transition-duration: .3s;
      -ms-transition-duration: .3s;
      -o-transition-duration: .3s;
      transition-duration: .3s;
    }
    .trs-dr05 {
      -webkit-transition-duration: .5s;
      -moz-transition-duration: .5s;
      -ms-transition-duration: .5s;
      -o-transition-duration: .5s;
      transition-duration: .5s;
    }
    .trs-dr06 {
      -webkit-transition-duration: .6s;
      -moz-transition-duration: .6s;
      -ms-transition-duration: .6s;
      -o-transition-duration: .6s;
      transition-duration: .6s;
    }
    .trs-dr08 {
      -webkit-transition-duration: .8s;
      -moz-transition-duration: .8s;
      -ms-transition-duration: .8s;
      -o-transition-duration: .8s;
      transition-duration: .8s;
    }
    .trs-dr12 {
      -webkit-transition-duration: 1.2s;
      -moz-transition-duration: 1.2s;
      -ms-transition-duration: 1.2s;
      -o-transition-duration: 1.2s;
      transition-duration: 1.2s;
    }
    /* trs-tf */
    .trs-tfCb {
      -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      transition-timing-function: cubic-bezier(0, .96, .4, .99);
    }
    .menuTrigger {
      position: fixed;
      z-index: 150;
      top: 0;
      right: 0;
      display: block;
      width: 13.33vw;
      height: 13.33vw;
      cursor: pointer;
      transition: .3s;
      background: #343434;
    }
    .menuTrigger::before {
      position: absolute;
      left: 0;
      bottom: 1.5vw;
      width: 100%;
      content: "MENU";
      font-size: 2.66vw;
      color: #fff;
      text-align: center;
      letter-spacing: 0;
    }
    .menuTrigger.open {
      top: 0;
    }
    .menuTrigger.open::before {
      display: none;
    }
    .menuIcon_line {
      position: absolute;
      left: 50%;
      margin-left: -3.5vw;
      width: 7vw;
      height: 1.066vw;
      background: #fff;
      border-radius: 2px;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 4.666vw);
    }
    .menuIcon_line:nth-of-type(2) {
      top: calc(50% - 2.4vw);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 0.133vw);
    }
    /* open */
    .menuTrigger.open .menuIcon_line {
      background: #fff;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 6vw;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(2) {
      opacity: 0;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 6vw;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    #hbNav {
      box-sizing: border-box;
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0 8vw;
      background-color: rgba(51,51,51,0.9);
      z-index: 120;
      overflow-y: visible;
      overflow-x: hidden;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
    }
    .hb_inner {
      box-sizing: border-box;
      display: table;
      width: 100%;
      height: 100%;
      font-size: 4.26vw;
      padding: 20vw 0 10.66vw 0;
    }
    .hb_inner a {
      display: block;
      color: #fff;
      text-decoration: none;
      text-align: center;
    }
    .hb_menu01 {
      margin-bottom: 7vw;
    }
    .hb_menu01 li {
      border-bottom: solid 1px #fff;
    }
    .hb_menu01 li a {
      padding: 5vw;
    }
  }
  @media screen and (max-width: 374px) {
    .menuIcon_line {
      position: absolute;
      left: 50%;
      margin-left: -3.5vw;
      width: 7vw;
      height: 3px;
      background: #fff;
      border-radius: 2px;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 16px);
    }
    .menuIcon_line:nth-of-type(2) {
      top: calc(50% - 8px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: 50%;
    }
  }