@charset "UTF-8";

/* ------------------------------
    基本情報
------------------------------ */

html,
body {
  height: 100%;
}
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family:
    "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  text-align: left;
  color: #333;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .ipad body,
  .android body,
  .iphone body {
    -webkit-text-size-adjust: 100%;
  }
  .android h2,
  .android h3,
  .android ul,
  .android dl dt,
  .android dl dd,
  .android p {
    max-height: 999999px;
  }
}

/*============================
共通
============================*/

/* ------------------------------
    base
------------------------------ */

body {
  position: relative;
}
p,
dt,
dd,
th,
td,
li {
  font-size: 1.6rem;
  line-height: 1.5;
}
a {
  color: #000;
  text-decoration: none;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    汎用
------------------------------ */

.flex {
  display: flex;
}
.wrap {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }

  a,
  a:before,
  a:after {
    transition: all 0.5s ease;
  }
  .hover {
    display: inline-block;
  }
  .hover:hover {
    opacity: 0.7;
  }
  a,
  a * {
    outline: 1px solid transparent;
  }

  @-webkit-keyframes modify {
    0% {
      padding-top: 80px;
      margin-top: -80px;
    }
    100% {
      padding-top: 0;
      margin-top: 0;
    }
  }
  @keyframes modify {
    0% {
      padding-top: 80px;
      margin-top: -80px;
    }
    100% {
      padding-top: 0;
      margin-top: 0;
    }
  }
  #link01:target,
  #link02:target,
  #link03:target,
  #link04:target,
  #link05:target,
  #link06:target,
  #link07:target,
  #link08:target,
  #link09:target {
    -webkit-animation: modify 0.1s;
    animation: modify 0.1s;
  }
}

@media screen and (max-width: 768px) {
  body.fixed {
    position: fixed;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  .wrap {
    width: 90%;
  }

  @-webkit-keyframes modify {
    0% {
      padding-top: 50px;
      margin-top: -50px;
    }
    100% {
      padding-top: 0;
      margin-top: 0;
    }
  }
  @keyframes modify {
    0% {
      padding-top: 50px;
      margin-top: -50px;
    }
    100% {
      padding-top: 0;
      margin-top: 0;
    }
  }
}

/*============================
header
===========================*/

header {
  width: 100%;
  height: 80px;
  background: #333;
}
header.org {
  background: transparent;
}
header.clone {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #333;
}
header .wrap.flex {
  height: 100%;
  align-items: center;
}
header .logo {
  width: 187px;
}
.top header.clone .logo {
  width: 150px;
}
header .logo svg {
  width: 187px;
  height: 31px;
}
.safari header .logo a,
.safari header .logo a * {
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  visibility: visible;
  will-change: transform;
}
.safari header .logo a:after {
}
.top header.clone .logo svg {
  width: 150px;
}

header .nav_header_pc {
  position: absolute;
  top: 28px;
  right: 0;
}
.top header.clone .nav_header_pc {
  right: 170px;
}
header .nav_header_pc li:not(:last-of-type) {
  margin-right: 20px;
}
header .nav_header_pc li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.top header.clone .nav_header_pc li a {
  font-size: 1.4rem;
}

header .btn_inquiry_pc {
  display: none;
}
.top header.clone .btn_inquiry_pc {
  display: block;
}
.top header.clone .btn_inquiry_pc a {
  position: absolute;
  top: 18px;
  right: 0;
  display: block;
  width: 156px;
  height: 40px;
  background: #ff5824;
  border-radius: 20px;
  box-shadow: 0 5px #cf5a24;
  transition: all 0.3s ease;
  line-height: 43px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  font-weight: bold;
  text-align: center;
}
.ie11 .top header.clone .btn_inquiry_pc a {
  border: 1px solid #ff5824;
}

@media screen and (min-width: 769px) {
  .top header.clone .btn_inquiry_pc a:hover {
    box-shadow: 0 3px #cf5a24;
    transform: translate(0, 2px);
  }
}

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 50px;
  }
  header.org {
    background: #333;
  }
  header .logo {
    width: 120px;
    height: 31px;
  }
  header .logo svg {
    width: 120px;
  }

  header .toggle {
    width: 25px;
    height: 18px;
    top: 17px;
    right: 0;
    position: absolute;
    overflow: hidden;
  }
  header .toggle span {
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: all 0.5s ease-out;
  }
  header .toggle span:nth-child(1) {
    top: 0;
    left: 0;
  }
  header .toggle span:nth-child(2) {
    top: 8px;
    left: 0;
  }
  header .toggle span:nth-child(3) {
    top: 16px;
    left: 0;
  }
  header .toggle.toggle_action span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  header .toggle.toggle_action span:nth-child(2) {
    background-color: rgba(255, 255, 255, 0);
  }
  header .toggle.toggle_action span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  header .nav_header_sp {
    position: fixed;
    top: 50px;
    left: 0;
    display: none;
    width: 100%;
    height: auto;
    background: #4f4f4f;
    overflowinstafeed: auto;
    z-index: 9999;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
  header .nav_header_sp li a {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 5%;
    color: #fff;
    line-height: 50px;
    font-size: 1.2rem;
  }
  header .nav_header_sp li + li a {
    border-top: 1px solid #fff;
  }

  header .btn_inquiry_sp a {
    position: absolute;
    top: 9px;
    right: 40px;
    display: block;
    width: 90px;
    height: 30px;
    background: #ff5824;
    border-radius: 15px;
    box-shadow: 0 3px #cf5a24;
    line-height: 32px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    font-weight: bold;
    text-align: center;
  }
}

/*============================
contents
===========================*/

.contents {
  position: relative;
}

.breadcrumb {
  margin-bottom: 70px;
}
.breadcrumb li {
  display: inline-block;
  color: #000;
  font-size: 1.2rem;
}
.breadcrumb li a {
  color: #000;
  font-size: 1.2rem;
  text-decoration: underline;
}
.breadcrumb li + li {
  margin-left: 13px;
}
.breadcrumb li + li:before {
  content: ">";
  display: inline-block;
  margin-right: 13px;
}

/*ttl*/
.ttl_upper {
  margin-top: 40px;
}
.ttl_under {
  margin-bottom: 50px;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}

.ttl_sec {
  min-height: 186px;
  background: url(../img/index/bg_ttl.png) center center no-repeat;
  background-size: 122px auto;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.ttl_sec_line {
  position: relative;
  margin-bottom: 50px;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
.ttl_sec_line:before,
.ttl_sec_line:after {
  content: "";
  position: absolute;
  top: 18px;
  width: 157px;
  height: 1px;
  border-top: 1px solid #333;
}
.ttl_sec_line:before {
  left: calc(50% - 268px);
}
.ttl_sec_line:after {
  right: calc(50% - 268px);
}

/*txt*/
.align_center {
  text-align: center;
}

.font_bold {
  font-weight: bold;
}

.txt_yellow {
  color: #fff91d;
}
.txt_orange {
  color: #ff5824;
}
.line_yellow {
  background: linear-gradient(
    transparent 73%,
    #fff91d 73%,
    #fff91d 97%,
    transparent 97%
  );
}
.txt_line {
  text-align: center;
}
.txt_line:before,
.txt_line:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 30px;
  border-radius: 2px;
}
.txt_line:before {
  margin-right: 20px;
  transform: translateY(5px) rotate(-22deg);
}
.txt_line:after {
  margin-left: 20px;
  transform: translateY(5px) rotate(22deg);
}

/*box*/
.box_shadow {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.box_shadow02 {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

/*btn*/
.btn_orange {
  display: block;
  width: 530px;
  height: 70px;
  background: #ff5824;
  border-radius: 35px;
  box-shadow: 0 7px #cf5a24;
  margin: 0 auto;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  line-height: 72px;
  transition: all 0.3s ease;
}
.ie11 .btn_orange {
  border: 1px solid #ff5824;
  line-height: 82px;
}

.btn_pageup a {
  display: flex;
  justify-content: center;
  align-items: center;
  right: 20px;
  opacity: 0;
  width: 60px;
  height: 60px;
  background: #333;
  transition: all 0.5s ease;
}
.btn_pageup a img {
  width: 25px;
}
.btn_pageup a.fadein {
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .btn_orange:hover {
    box-shadow: 0 4px #cf5a24;
    transform: translate(0, 3px);
  }
  .btn_pageup a:hover.fadein {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 6%;
  }
  .breadcrumb li {
    display: inline;
    font-size: 1.1rem;
  }
  .breadcrumb li + li {
    margin-left: 7px;
  }
  .breadcrumb li + li:before {
    margin-right: 7px;
  }

  /*ttl*/
  .ttl_under {
    margin-bottom: 6%;
    font-size: 2rem;
    line-height: 1.3;
  }

  .ttl_sec {
    min-height: 93px;
    background: url(../img/index/bg_ttl.png) center center no-repeat;
    background-size: 61px auto;
    font-size: 2rem;
  }

  .ttl_sec_line {
    margin-bottom: 4%;
    font-size: 2rem;
  }
  .ttl_sec_line:before,
  .ttl_sec_line:after {
    top: 9px;
    width: 80px;
  }
  .ttl_sec_line:before {
    left: calc(50% - 140px);
  }
  .ttl_sec_line:after {
    right: calc(50% - 140px);
  }

  /*txt*/
  .txt_line:before,
  .txt_line:after {
    width: 2px;
    height: 20px;
    border-radius: 1px;
  }
  .txt_line:before {
    margin-right: 10px;
  }
  .txt_line:after {
    margin-left: 10px;
  }

  /*box*/
  .box_shadow,
  .box_shadow02 {
    padding: 8% 5%;
  }

  /*btn*/
  .btn_orange {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    box-shadow: 0 5px #cf5a24;
    font-size: 1.6rem;
    line-height: 42px;
  }

  .btn_pageup a {
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .btn_pageup a.fadein {
    opacity: 0.8;
  }
}

/*============================
footer
===========================*/

footer {
  width: 100%;
  height: 60px;
  background: #333;
}
footer .flex {
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
footer .txt_copy {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
footer ul li {
  display: inline-block;
}
footer ul li + li {
  position: relative;
  margin-left: 20px;
}
footer ul li + li:before {
  content: "|";
  display: inline-block;
  margin-right: 20px;
  color: #fff;
}
footer ul li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  footer {
    height: auto;
    padding: 5% 0;
  }
  footer .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .txt_copy {
    width: 100%;
    order: 2;
    font-size: 1rem;
    text-align: center;
  }
  .android footer .txt_copy {
    font-family:
      Verdana,
      “Droid Sans”;
  }
  footer ul {
    width: 100%;
    order: 1;
    margin-bottom: 5%;
  }
  footer ul li {
    display: block;
    text-align: center;
  }
  footer ul li + li {
    margin: 3% 0 0;
  }
  footer ul li + li:before {
    content: none;
  }
  footer ul li a {
    font-size: 1.4rem;
  }
}
