@charset "utf-8";
/* CSS Document */
a {
  color: #333;
  text-decoration: none;
  transition: all linear 0.3s;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #fff;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  body img {
    max-width: 100%;
  }
}
/* ========== end △ */
* {box-sizing: border-box;}
/* ==================================================
	basic layout
================================================== */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333;
  overflow: hidden;
  font-size: 1.4rem;
  min-width: 320px;
}

html {
	font-family: "Noto Sans Japanese", "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", sans-serif;
	overflow-y: auto;
	line-height: normal;
	font-size: 1.6em;
}
body {
  font-family: "Noto Sans Japanese", "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", sans-serif;
	font-size: 1.6rem;
}
img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}
/* サイト幅
-------------------------------------------------- */
.container {
  box-sizing: border-box;
  width: 100%;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 640px) {
  .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}
/* ========== end △ */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1800px) {
  .container {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
/* ========== end △ */

/* ==================================================
	header
================================================== */
#header {
  position: relative;
  /* z-index: 9999; */
}
#header .h_sec {
  padding: 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 5;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  transition: all ease 0.3s;
}
#header .h_sec.is-animation {
  background: #fff;
  padding: 10px 30px;
  box-shadow: 0 0 5px #999;
  z-index: 10;
}
#header .h_sec.is-animation .right ul li a {
  color: #333;
}
#header .h_sec.is-animation .right ul li a::before {
  background: #333;
}
#header .h_sec.is-animation .right > a {
  width: 80px;
  height: 80px;
  font-size: 13px;
}
#header .h_sec.is-animation .right > a figure {
  width: 20px;
  margin: 20px auto 10px;
}
#header .h_sec.is-animation .right > a figure img {
  width: 100%;
}
#header .h_sec > a:hover {
  transform: translateY(-10px);
}
#header .h_sec .right {
  display: flex;
  align-items: center;
}
#header .h_sec .right ul {
  display: flex;
}
#header .h_sec .right ul li {
  margin-right: 40px;
}
#header .h_sec .right ul li:nth-child(4) a {
  text-transform: none;
}
#header .h_sec .right ul li a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #c50839;
  position: relative;
  display: inline-block;
  transition: all ease 0.3s;
  text-transform: uppercase;
}
#header .h_sec .right ul li a:before {
/*  display: block;
  width: 1px;
  height: 10px;
  background: #c50839;
  content: "";
  position: absolute;
  top: -13px;
  left: 3px;
  z-index: 2;
  transform: rotate(30deg);
  transition: all ease 0.3s;*/
}
#header .h_sec .right ul li a:after {
  content: "";
  position: absolute;
  margin: 5px auto 0;
  left: 0%;
  width: 100%;
  height: 4px;
  background: #c50839;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 100%;
  transition: all ease 0.3s;
  bottom: -15px;
}
#header .h_sec .right ul li a:hover:after {
  transform: scale3d(1, 1, 1);
  transform-origin: 50% 50%;
}
#header .h_sec .right ul li a:hover {
  color: #c50839;
}
#header .h_sec .right ul li a:hover:before {
  background: #c50839;
}
#header .h_sec .right > a {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  background: rgb(162,28,63);
  background: linear-gradient(90deg, rgba(162,28,63,1) 0%, rgba(191,15,57,1) 100%);
}
#header .h_sec .right > a figure {
  margin-top: 25px;
  margin-bottom: 10px;
  transition: all ease 0.3s;
}
#header .h_sec .right > a figure img {
  transition: all ease 0.3s;
}
#header .h_sec .right > a span {
  color: #fff;
  font-weight: bold;
  transition: all ease 0.3s;
}
#header .h_sec .right > a div#h_entry {
  color: #fff;
  margin-top: 40px;
  font-size: 15px;
  font-weight: bold;
  transition: all ease 0.3s;
}
#header .h_sec .right > a:hover {
  transform: translateY(-10px);
}

#header .h_sec .burger {
  background: #c50839;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 9999;
}
#header .h_sec .burger .inner {
  text-align: center;
}
#header .h_sec .burger .inner div {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px;
}
#header .h_sec .burger .inner span {
  color: #fff;
  font-size: 10px;
  text-align: center;
}
.sp {display: none;}
@media only screen and (max-width: 1100px) {
  #header .h_sec {
    padding: 0;
  }
  #header .h_sec.is-animation {
    padding: 0;
  }
  #header .h_sec .burger {
    display: flex;
    cursor: pointer;
  }
  #header .h_sec .burger .inner div {
    transition: all ease 0.3s;
  }
  #header .h_sec .burger.opened .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  #header .h_sec .burger.opened .line2 {
    opacity: 0;
  }
  #header .h_sec .burger.opened .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  #header .h_sec > a {
    padding: 0px 0 0 20px;
  }
  #header .h_sec .wrap_right {
    position: absolute;
    /* border-top: 1px solid #cfcfcf; */
    top: 0;
    right: -450px;
    height: 100vh;
    background: #000;
    transition: all ease 0.5s;
    width: 450px;
    z-index: 9999;
    padding-top: 70px;
  }
  #header .h_sec .wrap_right.opened {
    right: 0;
  }
  #header .h_sec .wrap_right .right {
    display: block;
    top: 100%;
    background: #000;
    padding: 0 10px;
  }
  #header .h_sec .wrap_right .right ul {
    width: 100%;
    flex-wrap: wrap;
  }
  #header .h_sec .wrap_right .right ul li {
    margin-right: 0;
    width: 100%;
  }
  #header .h_sec .wrap_right .right ul li a {
    font-size: 14px;
    border-bottom: 1px solid #000000;
    display: block;
    padding: 15px;
    color: #fff;
  }
  #header .h_sec .wrap_right .right ul li a:before {
    display: none;
  }
  #header .h_sec .wrap_right .right ul li a:after {
    display: none;
  }
  #header .h_sec .wrap_right .right ul li a:hover {
    color: #fff;
    background: #c50839;
  }
  #header .h_sec .wrap_right .right > a {
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 0;
    height: auto;
    color: #fff;
    font-size: 14px;
    text-align: left;
    padding: 25px 15px;
    border-bottom: 1px solid #000000;
    background: linear-gradient(90deg, rgba(162,28,63,1) 0%, rgba(191,15,57,1) 100%);
  }
  #header .h_sec .wrap_right .right > a figure {
    margin: 0 10px 0 0;
  }
  #header .h_sec .wrap_right .right > a figure img {
    /* display: none; */
  }
  #header .h_sec .wrap_right .right > a span {
    color: #fff;
  }
  #header .h_sec .wrap_right .right > a:hover {
  }
  #header .h_sec .wrap_right .right > a:hover span {
    color: #fff;
  }
  #header .h_sec .wrap_right .right > a:hover:hover {
    transform: translateY(0px);
  }
	.sp {display: block;}
	#header .h_sec .right > a div#h_entry {margin-top: 0;}
}
@media only screen and (max-width: 639px) {
  #header .h_sec > a {
    margin-right: 5%;
    display: block;
    width: 55%;
  }
  #header .h_sec > a img {
    width: 100%;
  }
  #header .h_sec .wrap_right {
    width: 100%;
    right: -100%;
  }
  #header .h_sec .right {
    display: flex;
  }
}
/* ==================================================
	footer
================================================== */
footer .page_up {
  position: fixed;
  right: -550px;
  bottom: 120px;
  z-index: 999;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  footer .page_up {
    bottom: 3% !important;
  }
  footer .page_up a {
    display: block;
  }
}
/* ========== end △ */
footer .f_sec {
  padding: 60px 0;
  background: #212121;
}
footer .f_sec .container .content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid #383838;
  margin-bottom: 50px;
}
footer .f_sec .container .content .left {
  border-right: 1px solid #383838;
  display: flex;
  padding-right: 40px;
}
footer .f_sec .container .content .left ul li {
  margin-bottom: 25px;
}
footer .f_sec .container .content .left ul li a {
  font-weight: bold;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #fff;
}
footer .f_sec .container .content .left ul li:last-child {
  margin-bottom: 0;
}
footer .f_sec .container .content .left ul:first-child {
  margin-right: 80px;
}
footer .f_sec .container .content .mid {
  padding: 0 70px;
  border-right: 1px solid #383838;
}
footer .f_sec .container .content .mid h2 {
  color: #fff;
  margin-bottom: 10px;
}
footer .f_sec .container .content .mid p {
  color: #999;
  margin-bottom: 20px;
  font-size: 12px;
}
footer .f_sec .container .content .right {
  padding: 0 70px;
}
footer .f_sec .container .content .right figure {
  margin-bottom: 10px;
}
footer .f_sec .container .content .right p {
  color: #999;
  font-size: 10px;
}
footer .f_sec .container .content2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .content2 .lbox a {
	margin-left: 4rem;
	color: #fff;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	font-weight: bold;
	line-height: 34px;
}
footer .f_sec .container .content2 > a:hover {
  transform: translateY(-10px);
}
footer .f_sec .container .content2 p {
  color: #999;
  font-size: 12px;
}
footer .btn1 a {
  width: 68px;
  height: 68px;
  font-size: 10px;
  padding-top: 23px;
  background: #545454;
  color: #fff;
}
footer .btn1 a:hover {
  padding-top: 23px;
  background: #c50839;
  color: #fff;
}
footer .btn1 a .circle1, footer .btn1 a .circle2, footer .btn1 a .circle3, footer .btn1 a .circle4 {
  width: 68px;
  height: 68px;
  border: 1px solid #545454;
  animation: pulse2 2.5s infinite;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 900px) {
	footer .content2 .lbox {margin: 0 auto 4rem;}
	footer .content2 .lbox a {display: block;text-align: center;}
  footer .f_sec .container .content .left ul:first-child {
    margin-right: 40px;
  }
  footer .f_sec .container .content .mid {
    padding: 0 30px;
  }
  footer .f_sec .container .content .right {
    padding: 0 30px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  footer .f_sec {
    padding: 8% 0;
  }
  footer .f_sec .container {
    padding: 0;
  }
  footer .f_sec .container .content {
    display: none;
  }
  footer .f_sec .container .content2 {
    flex-wrap: wrap;
  }
  footer .f_sec .container .content2 > a {
    width: 60%;
    display: block;
    margin: 0 auto 5%;
  }
  footer .f_sec .container .content2 .right {
    width: 100%;
    text-align: center;
    margin-bottom: 6%;
    border-bottom: 1px solid #383838;
    padding-bottom: 6%;
  }
  footer .f_sec .container .content2 .right p {
    margin-top: 3%;
  }
  footer .f_sec .container .content2 > p {
    width: 100%;
    text-align: center;
  }
}
/* ========== end △ */

/*====================================================================================
■02.CLEAR FLOAT
====================================================================================*/
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*====================================================================================
■03.MARGIN DEFAULT
====================================================================================*/
/* margin */
.mat {
  margin: auto !important;
}

.m00 {
  margin: 0px !important;
}

.m05 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.m60 {
  margin: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.m85 {
  margin: 85px !important;
}

.m90 {
  margin: 90px !important;
}

.mt00 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr00 {
  margin-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml00 {
  margin-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

/* margin */
/* padding */
.p00 {
  padding: 0px !important;
}

.p05 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.p55 {
  padding: 55px !important;
}

.p60 {
  padding: 60px !important;
}

.p65 {
  padding: 65px !important;
}

.p70 {
  padding: 70px !important;
}

.p75 {
  padding: 75px !important;
}

.p80 {
  padding: 80px !important;
}

.p85 {
  padding: 85px !important;
}

.p90 {
  padding: 90px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr00 {
  padding-right: 0px !important;
}

.pr05 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pl90 {
  padding-left: 90px !important;
}

/* padding */
/* font */
.f10 {
  font-size: 10px !important;
}

.f11 {
  font-size: 11px !important;
}

.f12 {
  font-size: 12px !important;
}

.f13 {
  font-size: 13px !important;
}

.f14 {
  font-size: 14px !important;
}

.f15 {
  font-size: 15px !important;
}

.f16 {
  font-size: 16px !important;
}

.f17 {
  font-size: 17px !important;
}

.f18 {
  font-size: 18px !important;
}

.f19 {
  font-size: 19px !important;
}

.f20 {
  font-size: 20px !important;
}

.f21 {
  font-size: 21px !important;
}

.f22 {
  font-size: 22px !important;
}

.f23 {
  font-size: 23px !important;
}

.f24 {
  font-size: 24px !important;
}

/*■05.FLEX*/
.flex {
  display: flex;
  /* Safari */
  display: -moz-flex;
  /* Firefox */
  display: -ms-flex;
  /* IE */
}

/*justify-content*/
.flex_jus_start {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex_jus_end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex_jus_center {
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex_jus_between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex_jus_around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex_jus_ini {
  justify-content: initial;
  -webkit-justify-content: initial;
  -moz-justify-content: initial;
  -ms-justify-content: initial;
}

/*align-items*/
.flex_align_item_start {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
}

.flex_align_item_end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex_align_item_stretch {
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
}

.flex_align_item_baseline {
  align-items: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex_align_item_center {
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex_align_item_ini {
  align-items: initial;
  -webkit-align-items: initial;
  -moz-align-items: initial;
  -ms-align-items: initial;
}

.flex_container {
  flex-wrap: wrap;
}

/*====================================================================================
■06.OTHER
====================================================================================*/
.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-underline {
  text-decoration: underline;
}

.text-none-underline {
  text-decoration: none !important;
}

.font14 {
  font-size: 14px;
}

.font11 {
  font-size: 11px;
}

.add_font {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.add_font2 {
  font-family: "Oswald", sans-serif;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.media, .media-body {
  overflow: hidden;
}

.media > .pull-left {
  margin-right: 20px;
}

.media > .pull-right {
  margin-left: 20px;
}

.media-text:after {
  clear: both;
  display: block;
  content: "";
  height: 0px;
  visibility: hidden;
}

/*====================================================================================
■07.PAGE UP
====================================================================================*/
footer .page_up {
  position: fixed;
  right: -550px;
  bottom: 120px;
  z-index: 80;
}
footer .page_up.dele {
  display: none;
}
/*====================================================================================
■08.404 notofound
====================================================================================*/
#notofound {padding: 16rem 0 10rem;}
#notofound h2 {margin-bottom: 5rem;font-size: 1.6rem;text-align: center;}
#notofound h2 span {display: block;font-size: 2em;text-align: center;}
#notofound p {margin-bottom: 2rem;text-align: center;}
#notofound a {
	display: block;
	max-width: 20rem;
	margin: 5rem auto 0 auto;
	padding: 2rem 5rem;
	background: #c50839;
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
}
#notofound a:hover {transform: translateY(-10px);}
@media only screen and (max-width: 639px) {
	#notofound {padding: 10rem 0;}
}
/*==========================================
■11.breadcrumb
====================================================================================*/
h2, h3, h4, h5, h6 {
  font-weight: bold;
}

.cm_tt1 {
  position: relative;
  margin-bottom: 40px;
}
.cm_tt1:before {
/*  display: block;
  width: 3px;
  height: 20px;
  background: #000;
  content: "";
  position: absolute;
  top: -5px;
  left: 13px;
  z-index: 2;
  transform: rotate(30deg);
  transition: all ease 0.3s;*/
}
.cm_tt1 span {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #000;
  display: inline-block;
}
.cm_tt1 strong {
  margin-top: -50px;
  display: block;
  margin-left: 40px;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1800px) {
  .cm_tt1 span {
    font-size: 50px;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .cm_tt1 span {
    font-size: 45px;
    line-height: 1;
  }
  .cm_tt1:before {
    top: -35px;
  }
}
/* ========== end △ */

.btn1 {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 4;
}
.btn1 a,
.box_intervew .btn1 p {
  position: relative;
  display: block;
  width: 145px;
  height: 145px;
  font-size: 16px;
  font-family: "Roboto";
  text-decoration: none;
  font-weight: bold;
  background: #fff;
  border-radius: 75px;
  padding-top: 55px;
  text-align: center;
  box-sizing: border-box;
  color: #A52019;
  box-shadow: 0 0 11px 0px #5c5c5c;
  cursor: pointer;
  transition: all ease 0.3s;
  line-height: 1.231;
}
.btn1 a strong,
.box_intervew .btn1 p strong {
  display: block;
  margin-top: 10px;
  transition: all ease 0.3s;
}
.btn1 a:hover,
.box_intervew .btn1 p:hover {
  padding-top: 65px;
}
.btn1 a:hover strong,
.box_intervew .btn1 p:hover strong {
  opacity: 0;
  margin-left: 40px;
}
.btn1 .circle1, .btn1 .circle2, .btn1 .circle3, .btn1 .circle4 {
  width: 145px;
  height: 145px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
}
.btn1 .circle1, .btn1 .circle2, .btn1 .circle3, .btn1 .circle4 {
  position: absolute;
  top: -1px;
  left: -1px;
  animation: pulse 2.5s infinite;
}
.btn1 .circle2 {
  animation-delay: 0.3s;
}
.btn1 .circle3 {
  animation-delay: 0.7s;
}
.btn1 .circle4 {
  animation-delay: 1.1s;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1800px) {
  .btn1 a,
  .box_intervew .btn1 p {
    width: 100px;
    height: 100px;
    padding-top: 38px;
    font-size: 14px;
  }
  .btn1 a .circle1, .btn1 a .circle2, .btn1 a .circle3, .btn1 a .circle4,
  .box_intervew .btn1 p .circle1, 
  .box_intervew .btn1 p .circle2, 
  .box_intervew .btn1 p .circle3,
  .box_intervew .btn1 p .circle4 {
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    animation: pulse 2.5s infinite;
  }
  .btn1 a .circle2,
  .box_intervew .btn1 p .circle2 {
    animation-delay: 0.3s;
  }
  .btn1 a .circle3,
  .box_intervew .btn1 p .circle3 {
    animation-delay: 0.7s;
  }
  .btn1 a .circle4,
  .box_intervew .btn1 p .circle4 {
    animation-delay: 1.1s;
  }
  .btn1 a:hover,
  .box_intervew .btn1 p:hover {
    padding-top: 45px;
  }
}
/* ========== end △ */
@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
  to {
    transform: scale(2.5);
    opacity: 0;
    filter: blur(1px);
  }
}
@keyframes pulse2 {
  from {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
  to {
    transform: scale(1.5);
    opacity: 0;
    filter: blur(1px);
  }
}

.line-wrap {
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
  position: absolute;
  z-index: 2;
}

.line {
  position: absolute;
  width: 200px;
  height: 2px;
  transform-origin: 0 0;
  transform: rotate(-60deg) scaleX(0);
  transition: 1000ms all;
}
.line.green .line-inner {
  background-color: #A52019;
}
.line.animate {
  transform: rotate(-60deg) scaleX(1);
}
.line.animate .line-inner {
  transform: scaleX(0);
  opacity: 0;
}
.line .line-inner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: 100% 100%;
  transition: 800ms all;
  transition-delay: 1000ms;
}

.cm_sec {
  background: url("images/common_img/contact.jpg") no-repeat center top;
  background-size: cover;
  padding: 85px 0;
}
.cm_sec .container h2 {
  text-align: center;
  margin-bottom: 30px;
}
.cm_sec .container p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
}
.cm_sec .container .btn2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  max-width: 485px;
  margin: auto;
}
.cm_sec .container .btn2 a {
  display: block;
  text-decoration: none;
  color: #fff;
  background: #c50839;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
}
.cm_sec .container .btn2 a img {
  margin-top: 7px;
  margin-right: 10px;
}
.cm_sec .container .btn2 a:hover {
  transform: translateY(-7px);
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 639px) {
  .cm_sec {
    padding: 15% 3%;
  }
  .cm_sec .container p {
    font-size: 16px;
  }
  .cm_sec .container .btn2 a {
    width: 100%;
    padding: 7% 0;
  }
}
/* ========== end △ */