@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}
html {
  font-size: 15px;
  /* for iPhone */
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family:
    "游ゴシック体",
    "Yu Gothic",
    YuGothic,
    "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro",
    "メイリオ",
    Meiryo,
    "MS Pゴシック",
    "MS PGothic",
    sans-serif;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #EEDAA9;
}
@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}
body {
  transition: opacity 0.5s,filter 1s ease-in-out 0.5s;
}
body:not(.loaded) {
  opacity: 0;
}
#pageHome:not(.loaded) {
  filter: blur(10px) sepia(80%);
}
body.loaded {
  opacity: 1;
}
iframe{ border-width: 0px; } 

@media screen and (max-width: 750px) {
  html,
  body {
    height: auto;
    width: 100%;
    overflow-x: hidden;
  }
  .forPC {
    display: none;
  }
  .forSP {
    display: block;
  }
  .forSPi {
    display: inline;
  }
  .forSPib {
    display: inline-block;
  }
}
@media screen and (min-width: 751px) {
  html {
    font-size: 18px;
  }
  html,
  body {
    height: 100%;
  }
  .forPC {
    display: block;
  }
  .forSP,
  .forSPi,
  .forSPib {
    display: none;
  }
}
img {
  max-width :100%;
  vertical-align: top;
}
img.keep {
  width: auto!important;
  max-width :100%!important;
}
a img  {
  border: none;
  transition: all 0.3s;
}
@media screen and (min-width: 1201px) {
  a:hover img {
    opacity: 0.8;
  }
}
ul,ol,li {
  list-style-type: none;
}
input,label,select,textarea {
  vertical-align: middle;
}
.disp_bl {
  display: block;
}
.disp_ibl {
  display: inline-block;
}
/* 背景カラー */
.bg_white {
  background-color: #fff;
}
.bg_white85 {
  background-color: rgba(255,255,255,0.85);
}
.bg_line {
  border: 2px solid #BF1920;
}
.bg_off_white {
  background-color: rgba(241,233,216,0.85);
}
.color_red {
  color: #BF1920;
}
.color_brown {
  color: #674800;
}
.indent {
  padding-left: 1em;
  box-sizing: border-box;
}
.bold {
  font-weight: bold;
}
.shadow {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.box_shadow.brown {
  box-shadow:  5px 5px 0 rgba(178,129,70,0.67);
}
@media screen and (min-width: 751px) {
  .box_shadow.brown {
    box-shadow:  10px 10px 0 rgba(178,129,70,0.67);
  }
}
.noMgnT {
  margin-top: 0 !important;
}
.noMgnB {
  margin-bottom: 0 !important;
}
.noPdgT {
  padding-top: 0 !important;
}
.noPdgB {
  padding-bottom: 0 !important;
}
.text {
  margin-top: 2em;
}
.underline {
  text-decoration: underline;
}
.align_center {
  text-align: center;
}
.align_left {
  text-align: left;
}
.align_right {
  text-align: right;
}
@media screen and (max-width: 750px) {
  .sp_align_center {
    text-align: center;
  }
}

/* SP コピーガード */
#main img {
  pointer-events: none;
  -webkit-touch-callout: none; /* default or none */
  -webkit-user-select: none; /* auto or none */
  user-select: none;
}
#main .controller img,
#main .prev img,
#main .next img{
  pointer-events: auto;
  -webkit-touch-callout: default;
  -webkit-user-select: auto;
  user-select: auto;
}
/* mfp保存禁止 */
.mfp-figure figure {
  position: relative;
}
.mfp-figure figure::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background: url(../images/dam.png) no-repeat;
  background-size: 100% 100%;
}
/*----------------------------------------------------
背景
----------------------------------------------------*/
.bg_fixed {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*height: 100vh;*/
  background-size: cover;
  background-position: center;
  background-image: url(../img/common/bg_sp.jpg);
  z-index: -1;
  transition: all 0.5s;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .bg_fixed {
    background-image: url(../img/common/bg_pc.jpg);
    background-size: cover;
    background-position: center bottom;
  }
}
/*----------------------------------------------------
common
----------------------------------------------------*/
.font_mincho{
  font-family:
   "游明朝体",
   "Yu Mincho",
   YuMincho,
   "ヒラギノ明朝 Pro",
   "Hiragino Mincho Pro",
   "MS P明朝",
   "MS PMincho",
   serif;
}
/*----------------------------------------------------
main
----------------------------------------------------*/
#main{
  display: block;
  overflow: hidden;
}
/*----------------------------------------------------
inner
----------------------------------------------------*/
.inner,
.innerSP{
  margin: 0 3.3333%;
}
.innerPC {
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .inner,
  .innerPC{
    margin: 0 40px;
  }
  .innerSP {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1081px) {
  .inner,
  .innerPC {
    margin: 0 auto;
    max-width: 1000px;
  }
}
/*----------------------------------------------------
section
----------------------------------------------------*/
.section {
  margin: 50px 0;
}
@media screen and (min-width: 751px) {
  .section {
    margin: 170px 0;
  }
}
/*----------------------------------------------------
box
----------------------------------------------------*/
.box {
  padding: 30px 3.3333%;
}
@media screen and (min-width: 751px) {
  .box {
    padding: 50px 40px;
  }
}
@media screen and (min-width: 1201px) {
  .box {
    padding: 60px 50px;
  }
}
/*columnの中の場合*/
.cols .box {
  padding: 30px 3.3333%;
}
/*----------------------------------------------------
カラム
----------------------------------------------------*/

.cols.is_wrap {
  flex-wrap: wrap;
}
.cols .col{
  margin-top: 50px;
}
.cols.is_min_mgn .col{
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .cols.sp_w450,
  .cols.sp_w480,
  .cols.sp_w485,
  .cols.sp_w100 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cols.sp_w450 .col{
    width: 45%;
    margin-top: 30px;
  }
  .cols.sp_w480 .col{
    width: 48%;
    margin-top: 30px;
  }
  .cols.sp_w485 .col{
    width: 48.5%;
    margin-top: 30px;
  }
  .cols.sp_w100 .col{
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (min-width: 751px) {
  .cols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cols.is_min_mgn .col{
    margin-top: 40px;
  }
  .cols.pc_w450 .col{
    width: 45%;
  }
  .cols.pc_w480 .col{
    width: 48%;
  }
  .cols.pc_w490 .col{
    width: 49%;
  }
  .cols.pc_w300 .col{
    width: 30%;
  }
  .cols.pc_w300::after {
    content: "";
    display: inline-block;
    width: 30%;
  }
  .cols.pc_w320 .col{
    width: 32%;
  }
  .cols.pc_w320::after {
    content: "";
    display: inline-block;
    width: 32%;
  }
  .cols.pc_w325 .col{
    width: 32.5%;
  }
  .cols.pc_w325::after {
    content: "";
    display: inline-block;
    width: 32.5%;
  }
  .cols.pc_w240 .col{
    width: 24%;
  }
  .cols.pc_w240::after {
    content: "";
    display: inline-block;
    width: 24%;
  }
  .cols.pc_w240::before {
    content: "";
    display: inline-block;
    width: 24%;
    order: 1;
  }
  .cols.pc_w245 .col{
    width: 24.5%;
  }
  .cols.pc_w245::after {
    content: "";
    display: inline-block;
    width: 24.5%;
  }
  .cols.pc_w245::before {
    content: "";
    display: inline-block;
    width: 24.5%;
    order: 1;
  }
  .cols.pc_w250 .col{
    width: 25%;
  }
  .cols.pc_w250::after {
    content: "";
    display: inline-block;
    width: 25%;
  }
  .cols.pc_w250::before {
    content: "";
    display: inline-block;
    width: 25%;
    order: 1;
  }
  .cols.pc_w220 .col{
    width: 22%;
  }
  .cols.pc_w220::after {
    content: "";
    display: inline-block;
    width: 22%;
  }
  .cols.pc_w220::before {
    content: "";
    display: inline-block;
    width: 22%;
    order: 1;
  }
  .cols.pc_w195 .col{
    width: 19.5%;
  }
  .cols.pc_w195::after {
    content: "";
    display: inline-block;
    width: 19.5%;
  }
  .cols.pc_w195::before {
    content: "";
    display: inline-block;
    width: 19.5%;
    order: 1;
  }
}
/*レイアウト調整*/
.article_inner {
  margin: 20px 0 0;
  padding: 0 3.333%;
}
.big_cross_title+.cols .col {
  margin-top: 20px;
}
@media screen and (min-width: 751px) {
  .cols.is_pc_reverse {
    flex-direction: row-reverse;
  }
  .article_inner {
    margin: 25px 0 0;
    padding: 0;
  }
  .article_inner.no_pc_mgn {
    margin: 0;
  }
  .big_cross_title+.cols .col {
    margin-top: 40px;
  }
}

/*----------------------------------------------------
動画埋め込み
----------------------------------------------------*/
.movie_frame.umekomi {
  position: relative;
  width: 100%;
}
.movie_frame.umekomi::before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 56.25%;
}
.movie_frame.umekomi iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*----------------------------------------------------
hvr-line
----------------------------------------------------*/
@media screen and (min-width: 1201px) {
  .hvr-line {
    position: relative;
    display: inline-block;
  }
  .hvr-line::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background: #fff;
    transition: all 0.3s;
  }
  .hvr-line:hover::before {
    width: 100%;
  }
}
/*----------------------------------------------------
ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  z-index: 1002;
  padding: 22px 20px;
  transition: all 0.3s;
  box-sizing: border-box;
  height: 74px;
  transition: 0.5s all;
}
#header .logo_h {
  display: inline-block;
  width: 83px;
}
#header .h_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url(../img/common/bg_head.png);
  background-size: 960px 654px;
  background-position: 35% bottom;
  background-repeat: no-repeat;
}
#menu>ul>li span {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
  color: #000;
}
#menu>ul>li>a {
  text-decoration: none;
}
#menu>ul>li.wait a {
  cursor: default;
}
#menu>ul>li.wait span {
  color: #8d8d8d;
}
#menu>ul>li.current>a span{
  color: #BF1920;
}
#share {
  display: inline-block;
  text-align: center;
}
#share .box_share {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
#share ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
#share ul li {
  margin: 0 10px;
  width: 30px;
}
#share a {
  padding: 0;
}
#share ul li img {
  width: 100%;
}

@media screen and (min-width: 751px) {
  #header {
    height: 100px;
    padding: 22px 40px;
  }
  #header .logo_h {
    width: 164px;
  }
}
@media screen and (min-width: 961px) {
  #header .h_bg {
    background-size: cover;
    background-position: center bottom;
  }
}
@media screen and (max-width: 1200px) {
  .gmenu li:last-child {
    text-align: center;
  }
  #menu {
    display: block;
    position: fixed;
    /*padding: 30px 0;*/
    top: -100vh;
    opacity: 0;
    left: 0%;
    z-index: 1000;
    width: 100%;
    height: 100%;
    /*transition: opacity 0.5s linear 0.3s, top 0.3s linear 0s;*/
    transition: opacity 0.5s linear 0.5s;
  }
  #share {
    margin-top: 100px;
  }
  body.open #header {
    height: 625px;
  }
  body.open #menu {
    top: 80px;
    opacity: 1;
    /*transition: opacity 0.3s linear 0s, top 0.3s linear 0.3s;*/
  }
}
@media screen and (max-width: 374px) {
  body.open #header {
    height: 500px;
  }
  #menu>ul>li>span {
    padding: 6px 0;
  }
  #share {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1201px) {
  #header {
    height: 132px;
    padding: 30px 50px;
  }
  .gmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #menu>ul {
    display: flex;
  }
  #menu>ul>li span {
    font-size: 16px;
    padding: 0 10px;
    line-height: 30px;
    transition: all 0.3s;
    position: relative;
  }
  #menu>ul>li>a span::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -10px;
    border-bottom: 8px solid #BF1920;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    left: calc(50% - 8px);
    transition: .6s;
    opacity: 0;
  }
  #menu>ul>li:not(.wait)>a:hover span{
    color: #BF1920;
  }
  #menu>ul>li:not(.wait)>a:hover span::after {
    opacity: 1;
    transform: rotateY(360deg);
  }
  #share {
    font-size: 16px;
  }
  #share ul li {
    margin: 0 0 0 15px;
  }
}
@media screen and (min-width: 1367px) {
  #menu>ul>li span,
  #share { 
    font-size: 18px;
  }
  #menu>ul>li span {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1501px) {
  #menu>ul>li span {
    padding: 0 20px;
  }
  #menu>ul>li:last-child {
    margin-left: 20px;
  }
}
#pageHome:not(.open) #header {
  top: -132px;
}
#pageHome.is_menu_home_show #header {
  top: 0;
}
/*----------------------------------------------------
メニューボタン
----------------------------------------------------*/
#btnMenu {
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 45px;
  height: 45px;
  top:5px;
  right: 20px;
  z-index: 1010;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
#btnMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 35px;
  background: #BF1920;
  opacity: 1;
  right: 5px;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#btnMenu span:nth-child(1) {
  top: 12px;
}
#btnMenu span:nth-child(2) {
  top: 22px;
}
#btnMenu span:nth-child(3) {
  top: 32px;
}
body.open #btnMenu span:nth-child(1) {
  top: 20px;
  right: 0;
  transform: rotate(45deg);

}
body.open #btnMenu span:nth-child(2) {
  top: 46%;
  width: 0%;
  right: 50%;
  display: none;
}
body.open #btnMenu span:nth-child(3) {
  top: 20px;
  right: 0;
  transform: rotate(-45deg);
}
@media screen and (min-width: 751px) {
  #btnMenu {
    top: 20px;
    right: 35px;
  }
}
@media screen and (min-width: 1201px) {
  #btnMenu {
    display: none;
  }
}

/*----------------------------------------------------
footer
----------------------------------------------------*/
#footer {
  background: #434343;
  padding: 60px 3.333% 40px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}
#fMenu {
  display: flex;
  justify-content: center;
}
#fMenu li {
  padding: 0 20px;
}
#fMenu li+li {
  border-left: 1px solid #fff;
}
#fMenu li a { 
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
#fMenu li.wait a {
  color: #8d8d8d;
  cursor: default;
}
.f_bar {
  height: 2px;
  background-color: transparent;
  border: none;
  margin: 25px 0;
}
.copyright {
  font-size: 9px;
}
@media screen and (min-width: 751px) {
  #footer {
    padding: 120px 40px 70px;
    letter-spacing: 0.1em;
  }
  #fMenu li a {
    font-size: 16px;
  }
  .f_bar {
    background-color: #fff;
    margin: 70px auto;
    max-width: 1400px;
  }
  .copyright {
    font-size: 14px;
  }
}
/*----------------------------------------------------
go_top
----------------------------------------------------*/
#go_top {
  position: fixed;
  opacity: 0;
  transition: all 0.3s;
  bottom: 0;
  right: 0;
  z-index: 10;
}
#go_top a {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  background: #000;
}
#go_top a span {
  position: absolute;
  display: block;
  background: #fff;
  width: 2px;
  z-index: 1;
}
#go_top a span:nth-of-type(1) {
  height: 26px;
  left: 17px;
  bottom: 5px;
}
#go_top a span:nth-of-type(2) {
  height: 10px;
  left: 20px;
  bottom: 22px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 751px) {
  #go_top a {
    width: 50px;
    height: 50px;
  }
  #go_top a span:nth-of-type(1) {
    height: 32px;
    left: 24px;
    bottom: 8px;
  }
  #go_top a span:nth-of-type(2) {
    height: 12px;
    left: 29px;
    bottom: 28px;
  }
}
@media screen and (min-width: 1025px) {
  #go_top a {
    transition: all 0.3s;
    border-radius: 0;
  }
  #go_top a:hover {
    background: #ca191b;
  }
}

body.scroll #go_top {
  opacity: 1;
}
/*----------------------------------------------------
go_ticket
----------------------------------------------------*/
#go_ticket {
  position: fixed;
  right: 0;
  bottom: 450px;
}
#go_ticket a {
  display: inline-block;
  width: 41px;
}

@media screen and (min-width: 751px) {
  #go_ticket {
    bottom: calc(50% - 0px);
  }
  #go_ticket a {
    width: 70px;
  }
}
/*----------------------------------------------------
go_ticket2
----------------------------------------------------*/
#go_ticket2 {
  position: fixed;
  right: 0;
  bottom: 290px;
}
#go_ticket2 a {
  display: inline-block;
  width: 41px;
}

@media screen and (min-width: 751px) {
  #go_ticket2 {
    bottom: calc(50% - 270px);
  }
  #go_ticket2 a {
    width: 70px;
  }
}
/*----------------------------------------------------
slick
----------------------------------------------------*/
.slick-dots {
  bottom: 100% !important;
  margin-bottom: 10px !important;
  text-align: right!important;
}
.slick-dots li button::before {
  content: "●";
  font-family: sans-serif !important;
  font-size: 10px !important;
  opacity: 1 !important;
}
.slick-dots li.slick-active button:before {
  color: #BF5353 !important;
}
.slick-prev::before,.slick-next::before {
  content: "" !important;
  width: 17px;
  height: 17px;
  display: block;
  position: absolute;
}
.slick-prev::before {
  transform: rotate( 308deg ) skew( -15deg );
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  left: 0;
}
.slick-next::before {
  transform: rotate( 52deg ) skew( 15deg );
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: 0;
}
@media screen and (max-width: 750px) {
  .slick-dots li {
    margin: 0 !important;
  }
}
@media screen and (min-width: 751px) {
  .slick-prev, .slick-next {
    width: 45px !important;
    height: 65px !important;
  }
  .slick-prev {
    left: -45px !important;
  }
  .slick-next {
    right: -45px !important;
  }
  .slick-prev::before,.slick-next::before {
    width: 35px;
    height: 35px;
    border-width: 2px;
    top: calc(50% - 18px);
  }
}
@media screen and (min-width: 1129px) {
  .slick-prev, .slick-next {
    width: 60px !important;
    height: 90px !important;
  }
  .slick-prev {
    left: -60px !important;
  }
  .slick-next {
    right: -60px !important;
  }
  .slick-prev::before,.slick-next::before {
    width: 47px;
    height: 47px;
    border-width: 2px;
    top: calc(50% - 25px);
    transition: 0.3s;
  }
  .slick-prev::before {
    left: 5px;
  }
  .slick-next::before {
    right: 5px;
  }
}
@media screen and (min-width: 1201px) {
  .slick-prev:hover::before,
  .slick-next:hover::before {
    border-color: #BF5353;
  }
}
/*----------------------------------------------------
下層共通・コンテンツ余白
----------------------------------------------------*/
body:not(#pageHome) #main{
  padding-top: 74px;
}
@media screen and (min-width: 751px) {
  body:not(#pageHome) #main{
    padding-top: 100px;
  }
}
@media screen and (min-width: 1201px) {
  body:not(#pageHome) #main{
    padding-top: 132px;
  }
}
/*----------------------------------------------------
下層共通・ヘッダー
----------------------------------------------------*/
.box_page_head {
  padding: 50px 0;
}
.page_head {
  text-align: center;
}
.page_head img {
  max-width: 100%;
  height: 42px;
}
@media screen and (min-width: 751px) {
  .box_page_head {
    padding: 100px 0 65px;
  }
  .page_head img {
    max-width: 100%;
    height: 74px;
  }
}
/*----------------------------------------------------
下層共通・ホームに戻る
----------------------------------------------------*/
.box_gohome {
  padding: 40px 0;
  text-align: center;
}
#go_home {
  display: inline-block;
  width: 200px;
  position: relative;
}
#go_home a {
  display: block;
  background :#BF1920;
  width: 100%;
  color: #fff;
  line-height: 50px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
#go_home .border{
    position:absolute;
    background:none;
    transition:all .5s ease-in-out;
}
#go_home>.border:nth-of-type(1){
  top:0;
  left:0;
  width:0;
  height:0;
  border-top:1px solid white;
}

#go_home>.border:nth-of-type(2){
  top:0;
  right:0;
  width:10px;
  height:0;
  border-right:1px solid white;
}

#go_home>.border:nth-of-type(3){
  bottom:0;
  right:0;
  width:0;
  height:0;
  border-bottom:1px solid white;
}

#go_home>.border:nth-of-type(4){
  bottom:0;
  left:0;
  width:0;
  height:0;
  border-left:1px solid white;
}
@media screen and (min-width: 751px) {
  .box_gohome {
    padding: 80px 0;
  }
  #go_home {
    width: 400px;
  }
  #go_home a {
    line-height: 70px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1201px) {
  .box_gohome {
    padding: 120px 0;
  }
  #go_home:hover .border:nth-of-type(1){
    width:100%;
  }

  #go_home:hover .border:nth-of-type(2){
    height:70px;
  }

  #go_home:hover .border:nth-of-type(3){
    width:100%;
  }

  #go_home:hover .border:nth-of-type(4){
    height:70px;
  }
}
/*----------------------------------------------------
下層共通・タイトル(横棒あり)
----------------------------------------------------*/
.bar_title {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1.2;
}
.bar_title.mid_fontsize {
  font-size: 17px;
}
.bar_title::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 2.5px;
  left: calc(50% - 20px);
  bottom: 0;
  z-index: 1;
  background: #000;
}
@media screen and (min-width: 751px) {
  .bar_title {
    font-size: 30px;
    padding-bottom: 30px;
  }
  .bar_title.mid_fontsize {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .bar_title::after {
    width: 80px;
    height: 5px;
    left: calc(50% - 40px);
  }
}
/*----------------------------------------------------
共通・詳しく見るボタン
----------------------------------------------------*/
.btn_wrap {
  margin: 60px 0;
  text-align: center;
}
.btn_wrap.addPdg {
  padding: 0 20px;
}
.btn_arrow {
  display: inline-block;
  position: relative;
  border: 1px solid #D0121B;
  line-height: 38px;
  padding: 0 80px 0 20px;
  color: #D0121B;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  margin-right: 20px;
  width: calc(100% - 40px);
  max-width: 400px;
  box-sizing: border-box;
}
.btn_arrow::before,
.btn_arrow::after {
  content: "";
  display: block;
  position: absolute;
  background: #D0121B;
  height: 1px;
  z-index: 1;
}
.btn_arrow::before {
  width: 73px;
  right: -20px;
  top: 50%;
}
.btn_arrow::after {
  width: 10px;
  right: -20px;
  top: calc(50% - 2px);
  transform: rotate(30deg);
}

@media screen and (min-width: 751px) {
  .btn_wrap.addPdg {
    padding: 0;
  }
  .btn_arrow {
    line-height: 50px;
    font-size: 20px;
    margin-right: 25px;
    padding: 0 75px 0 30px;
    border-width: 2px;
    transition: all 0.3s;
  }
  .btn_arrow::before,
  .btn_arrow::after {
    height: 2px;
    right: -30px;
    transition: all 0.3s;
  }
  .btn_arrow::before {
    width: 97px;
  }
  .btn_arrow::after {
    width: 13px;
    top: calc(50% - 3px);
  }
}
@media screen and (min-width: 1201px) {
  .btn_arrow:hover {
    background: #fff;
  }
  .btn_arrow:hover::before,
  .btn_arrow:hover::after {
    right: -40px;
  }
  .btn_arrow:hover::before {
    width: 107px;
  }
}
/*----------------------------------------------------
共通・セクション
----------------------------------------------------*/
.section.addPdgT {
  padding-top: 75px; 
}
.section.addPdgB {
  padding-bottom: 75px; 
}


.article {
  margin-top: 75px; 
}
@media screen and (min-width: 751px) {
  .section.addPdgT {
    padding-top: 120px; 
  }
  .section.addPdgB {
    padding-bottom: 120px; 
  }
  .article {
    margin-top: 165px;
  }
}
/*----------------------------------------------------
共通・タブコンテンツ
----------------------------------------------------*/
.tab_box {
  margin-top: 75px;
}
.tab_box.noMgnT {
  margin-top: 0;
}
.tab_box .tab_buttons {
  display: flex;
  justify-content: space-between;
  background: #fff;
}
.tab_box .tab_buttons li {
  min-height :75px;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 0;
  transition: 0.3s;
}
.tab_box .tab_buttons li span {
  display: inline-block;
  padding: 10px 5px;
  box-sizing: border-box;
  transition: 0.3s;
}
.tab_box .tab_buttons li.is_active span {
  color: #fff !important;
}
.tab_box.is_2 .tab_buttons li {
  width: 50%;
  font-size: 17px;
}
.tab_box.is_2 .tab_buttons li span,
.tab_box.is_3 .tab_buttons li span{
  padding: 10px 15px;
}
.tab_box.is_3 .tab_buttons li {
  width: 33.33333%;
  font-size: 16px;
}
.tab_box.is_4 .tab_buttons li {
  width: 25%;
}
.tab_box.is_5 .tab_buttons li {
  width: 20%;
}
.tab_buttons li:nth-of-type(1)  {
  color: #D0121B;
}
.tab_buttons li:nth-of-type(2)  {
  color: #B28146;
}
.tab_buttons li:nth-of-type(3)  {
  color: #165F65;
}
.tab_buttons li:nth-of-type(4)  {
  color: #101010;
}
.tab_buttons li:nth-of-type(5)  {
  color: #052447;
}
.tab_buttons li.is_wait {
  opacity: 0.5;
  position: relative;
}
.tab_buttons li.is_wait::after {
  content: '準備中';
  display: block;
  position: absolute;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  font-size: 11px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 75px;
}
.tab_buttons li.is_active:nth-of-type(1)  {
  background: rgb(208,18,27);
  background: linear-gradient(0deg, rgba(208,18,27,1) 0%, rgba(155,0,8,1) 100%);
}
.tab_buttons li.is_active:nth-of-type(2)  {
  background: rgb(178,129,70);
  background: linear-gradient(0deg, rgba(178,129,70,1) 0%, rgba(143,100,46,1) 100%);
}
.tab_buttons li.is_active:nth-of-type(3)  {
  background: rgb(0,117,128);
  background: linear-gradient(0deg, rgba(0,117,128,1) 0%, rgba(0,83,90,1) 100%);
}
.tab_buttons li.is_active:nth-of-type(4)  {
  background: rgb(95,95,95);
  background: linear-gradient(0deg, rgba(95,95,95,1) 0%, rgba(16,16,16,1) 100%);
}
.tab_buttons li.is_active:nth-of-type(5)  {
  background: rgb(0,49,106);
  background: linear-gradient(0deg, rgba(0,49,106,1) 0%, rgba(0,25,53,1) 100%);
}
.tab_contents li {
  display: none;
}
.tab_contents li.is_active {
  display: block;
}
.tab_contents li{
  border-top: 3px solid;
}
.tab_contents li:nth-of-type(1)  {
  border-top-color: #D0121B;
}
.tab_contents li:nth-of-type(2)  {
  border-top-color: #B28146;
}
.tab_contents li:nth-of-type(3)  {
  border-top-color: #165F65;
}
.tab_contents li:nth-of-type(4)  {
  border-top-color: #5E5E5E;
}
.tab_contents li:nth-of-type(5)  {
  border-top-color: #052447;
}

.tab_title,
.tab_content {
  padding: 25px 3.3333%;
  box-sizing: border-box;
}
.tab_title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.border_cross {
  position: relative;
}
.border_cross::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  background-size: 8px 8px;
}
.tab_title.border_cross.border_top,
.tab_content.border_cross.border_top {
  padding-top: 33px;
}
.tab_title.border_cross.border_bottom,
.tab_content.border_cross.border_bottom {
  padding-bottom: 33px;
}
.border_cross.border_top::after {
  top: 0;
}
.border_cross.border_bottom::after {
  bottom: 0;
}
.tab_contents li:nth-of-type(1) .tab_title {
  color: #D0121B;
}
.tab_contents li:nth-of-type(1) .tab_title.border_cross::after,
.tab_contents li:nth-of-type(1) .tab_content.border_cross::after {
  background-image:
  repeating-linear-gradient(45deg, #D0121B 0px, #D0121B 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #D0121B 0px, #D0121B 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.tab_contents li:nth-of-type(2) .tab_title {
  color: #B28146;
}
.tab_contents li:nth-of-type(2) .tab_title.border_cross::after,
.tab_contents li:nth-of-type(2) .tab_content.border_cross::after {
  background-image:
  repeating-linear-gradient(45deg, #B28146 0px, #B28146 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #B28146 0px, #B28146 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.tab_contents li:nth-of-type(3) .tab_title {
  color: #165F65;
}
.tab_contents li:nth-of-type(3) .tab_title.border_cross::after,
.tab_contents li:nth-of-type(3) .tab_content.border_cross::after {
  background-image:
  repeating-linear-gradient(45deg, #165F65 0px, #165F65 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #165F65 0px, #165F65 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.tab_contents li:nth-of-type(4) .tab_title {
  color: #101010;
}
.tab_contents li:nth-of-type(4) .tab_title.border_cross::after,
.tab_contents li:nth-of-type(4) .tab_content.border_cross::after {
  background-image:
  repeating-linear-gradient(45deg, #101010 0px, #101010 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #101010 0px, #101010 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.tab_contents li:nth-of-type(5) .tab_title {
  color: #052447;
}
.tab_contents li:nth-of-type(5) .tab_title.border_cross::after,
.tab_contents li:nth-of-type(5) .tab_content.border_cross::after {
  background-image:
  repeating-linear-gradient(45deg, #052447 0px, #052447 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #052447 0px, #052447 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
@media screen and (min-width: 751px) {
  .tab_box {
    margin-top: 200px;
  }
  .tab_box .tab_buttons li,
  .tab_box.is_3 .tab_buttons li{
    font-size: 22px;
    min-height: 100px;
  }
  .tab_box.is_2 .tab_buttons li {
    font-size: 30px;
  }
  .tab_title {
    font-size: 30px;
    padding: 30px 0px;
  }
  .border_cross::after {
    height: 11px;
    background-size: 11px 11px;
  }
  .tab_buttons li.is_wait::after {
    line-height: 100px;
    font-size: 20px;
  }
  .tab_content {
    padding: 40px 0;
  }
  .tab_contents li{
    border-width: 5px;
  }
  .tab_title.border_cross.border_top {
    padding-top: 41px;
  }
  .tab_title.border_cross.border_bottom {
    padding-bottom: 41px;
  }
  .tab_content.border_cross.border_top {
    padding-top: 51px;
  }
  .tab_content.border_cross.border_bottom {
    padding-bottom: 51px;
  }
}
@media screen and (min-width: 1201px) {
  .tab_buttons li:not(.is_wait)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 5px;
    transition: 0.3s;
  }
  .tab_buttons li:not(.is_wait):nth-of-type(1)::after {
    background:#D0121B;
  }
  .tab_buttons li:not(.is_wait):nth-of-type(2)::after {
    background:#B28146;
  }
  .tab_buttons li:not(.is_wait):nth-of-type(3)::after {
    background:#165F65;
  }
  .tab_buttons li:not(.is_wait):nth-of-type(4)::after {
    background:#5E5E5E;
  }
  .tab_buttons li:not(.is_wait):nth-of-type(5)::after {
    background:#052447;
  }
  .tab_buttons li:not(.is_wait):hover {
    cursor: pointer;
  }
  .tab_buttons li:not(.is_wait):hover::after {
    width: 100%;
  }
  .tab_buttons li:not(.is_wait):hover span{
    opacity: 0.8;
  }

}
/*----------------------------------------------------
共通・タブコンテンツ
----------------------------------------------------*/
.caption {
  margin-top: 1em;
  font-size: 12px;
}
.mid_title {
  margin: 15px 0;
  font-size: 15px;
  font-weight: 600;
}
.mid_title+.text {
  margin-top: 0;
}
.text+.image {
  margin-top: 20px;
}
.text+.image.noMgnT {
  margin-top: 0;
}

@media screen and (min-width: 751px) {
  .caption {
    margin-top: 1em;
    font-size: 14px;
    text-align: center;
  }
  .mid_title {
    margin: 30px 0;
    font-size: 20px;
  }
}
.tab_contents .cols .col {
  margin-top: 0px;
}
@media screen and (max-width: 750px) {
  .tab_contents .cols.is_pc3 .col:nth-child(n+2) {
    margin-top: 25px;
  } 
  .tab_contents .cols .col:nth-child(2) {
    margin-top: 25px;
  }
  .tab_contents .cols.is_sp2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .tab_contents .cols.is_sp2 .col {
    width: 45%;
  }
  .tab_contents .cols.is_sp2 .col:nth-child(2) {
    margin-top: 0;
  }
  .tab_contents .cols.is_sp2 .col:nth-child(n+3) {
    margin-top: 25px;
  }
}
@media screen and (min-width: 751px) {
  .tab_contents .cols{
    display: flex;
    justify-content: space-between;
  }
  .tab_contents .cols .col {
    width: 48%;
  }
  .tab_contents .cols.is_pc3,
  .tab_contents .cols.is_pc4 {
    flex-wrap: wrap;
  }
  .tab_contents .cols.is_pc3 .col{
    width:  30%;
  }
  .tab_contents .cols.is_pc4 .col{
    width:  22%;
  }
  .tab_contents .cols.is_pc3::after {
    content: "";
    display: inline-block;
    width: 30%;
  }
  .tab_contents .cols.is_pc3::before {
    content: "";
    display: inline-block;
    width: 20%;
    order: 1;
  }
  .tab_contents .cols.is_pc3::after {
    content: "";
    display: inline-block;
    width: 20%;
  }
}
/*----------------------------------------------------
共通・タイトル
・big_cross_title
・big_cross_title wide
・big_bg_title
・mid_border_title
・bg_leftbar_title
・min_title
----------------------------------------------------*/
/*------ばつばつタイトル------*/
.big_cross_title {
  position: relative;
  padding: 15px 0;
  margin: 40px 0;
}
.big_cross_title span {
  position: relative;
  display: block;
  padding: 0 3.3333%;
  font-weight: 600;
  font-size: 17px;
}

.big_cross_title span.no_left {
  padding: 0;
}
.big_cross_title span:not(.no_left)::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  left: 0;
  top: 0;
  bottom: 0;
}
.big_cross_title::before,.big_cross_title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 8px;
  width: 100%;
  background-size: 8px 8px;
}

.big_cross_title::before {
  top: 0;
}
.big_cross_title::after {
  bottom: 0;
}
.big_cross_title.red span {
  color: #D0121B;
}
.big_cross_title.red span::before {
  background: #D0121B;
}
.big_cross_title.red::before,.big_cross_title.red::after {
  background-image:
  repeating-linear-gradient(45deg, #D0121B 0px, #D0121B 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #D0121B 0px, #D0121B 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.big_cross_title.brown span {
  color: #B28146;
}
.big_cross_title.brown span::before {
  background: #B28146;
}
.big_cross_title.brown::before,.big_cross_title.brown::after {
  background-image:
  repeating-linear-gradient(45deg, #B28146 0px, #B28146 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #B28146 0px, #B28146 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.big_cross_title.green span {
  color: #165F65;
}
.big_cross_title.green span::before {
  background: #165F65;
}
.big_cross_title.green::before,.big_cross_title.green::after {
  background-image:
  repeating-linear-gradient(45deg, #165F65 0px, #165F65 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #165F65 0px, #165F65 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.big_cross_title.navy span {
  color: #052447;
}
.big_cross_title.navy span::before {
  background: #052447;
}
.big_cross_title.navy::before,.big_cross_title.navy::after {
  background-image:
  repeating-linear-gradient(45deg, #052447 0px, #052447 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #052447 0px, #052447 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
.big_cross_title.gray span {
  color: #5E5E5E;
}
.big_cross_title.gray span::before {
  background: #5E5E5E;
}
.big_cross_title.gray::before,.big_cross_title.gray::after {
  background-image:
  repeating-linear-gradient(45deg, #101010 0px, #101010 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
  repeating-linear-gradient(135deg, #101010 0px, #101010 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
}
@media screen and (min-width: 751px) {
  .big_cross_title {
    padding: 20px 0;
    margin: 60px 0;
  }
  .big_cross_title.wide {
    padding: 30px 0;
  }
  .big_cross_title span {
    position: relative;
    display: block;
    padding: 0 25px;
    font-weight: 600;
    font-size: 25px;
  }
  .big_cross_title.wide span {
    font-size: 30px;
  }
  .big_cross_title span:not(.no_left)::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    left: 0;
    top: -8px;
    bottom: -8px;
  }
  .big_cross_title::before,.big_cross_title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    height: 6.5px;
    width: 100%;
    background-size: 6.5px 6.5px;
  }
  .big_cross_title.wide::before,.big_cross_title.wide::after {
    height: 10px;
    background-size: 10px 10px;
  }
}
/*------塗り上下ボーダータイトル------*/
.big_bg_title {
  position: relative;
  padding: 15px 0;
  margin: 40px 0;
  min-height: 70px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.big_bg_title span {
  position: relative;
  display: block;
  padding: 0 3.3333%;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.big_bg_title::before,.big_bg_title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background-size: 8px 8px;
}
.big_bg_title::before {
  top: -5px;
}
.big_bg_title::after {
  bottom: -5px;
}
.big_bg_title.red {
  background-color: #D0121B;
}
.big_bg_title.red::before,.big_bg_title.red::after {
  background: #D0121B;
}
.big_bg_title.brown {
  background-color: #B28146;
}
.big_bg_title.brown::before,.big_bg_title.brown::after {
  background: #B28146;
}
.big_bg_title.green {
  background-color: #165F65;
}
.big_bg_title.green::before,.big_bg_title.green::after {
  background: #165F65;
}
.big_bg_title.navy {
  background-color: #052447;
}
.big_bg_title.navy::before,.big_bg_title.navy::after {
  background: #052447;
}
.big_bg_title.gray {
  background-color: #5E5E5E;
}
.big_bg_title.gray::before,.big_bg_title.gray::after {
  background: #5E5E5E;
}
@media screen and (min-width: 751px) {
  .big_bg_title span {
    font-size: 30px;
  }
  .big_bg_title::before {
    top: -6px;
  }
  .big_bg_title::after {
    bottom: -6px;
  }
}
/*------中タイトルボーダー------*/
.mid_border_title {
  padding: 5px 0;
  min-height: 60px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.mid_border_title span {
  font-size: 17px;
  padding: 0 3.3333%;
  line-height: 1.28;
  width: 100%;
}
.mid_border_title.red {
  border-color: #D0121B;
}
.mid_border_title.red span{
  color: #D0121B;
}
.mid_border_title.brown {
  border-color: #B28146;
}
.mid_border_title.brown span{
  color: #B28146;
}
.mid_border_title.green {
  border-color: #165F65;
}
.mid_border_title.green span{
  color: #165F65;
}
.mid_border_title.gray {
  border-color: #5E5E5E;
}
.mid_border_title.gray span{
  color: #5E5E5E;
}
.mid_border_title.navy {
  border-color: #052447;
}
.mid_border_title.navy span{
  color: #052447;
}
@media screen and (min-width: 751px) {
  .mid_border_title {
    border-left-width: 5px;
    padding: 10px 0;
    min-height: 55px;
  }
  .mid_border_title span {
    font-size: 20px;
    padding: 0 10px;
  }
}
/*------左に棒がある塗りタイトル------*/
.bg_leftbar_title {
  position: relative;
  padding: 5px 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin: 40px 0 40px 5px;
}
.bg_leftbar_title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  width: 2.5px;
}
.bg_leftbar_title span {
  font-size: 17px;
  padding: 0 3.3333%;
  line-height: 1.28;
  width: 100%;
  color: #fff;
}
.bg_leftbar_title.red {
  background: #D0121B;
}
.bg_leftbar_title.red::before{
  background: #D0121B;
}
.bg_leftbar_title.brown {
  background: #B28146;
}
.bg_leftbar_title.brown::before{
  background: #B28146;
}
.bg_leftbar_title.green {
  background: #165F65;
}
.bg_leftbar_title.green::before{
  background: #165F65;
}
.bg_leftbar_title.gray {
  background: #5E5E5E;
}
.bg_leftbar_title.gray::before{
  background: #5E5E5E;
}
.bg_leftbar_title.navy {
  background: #052447;
}
.bg_leftbar_title.navy::before{
  background: #052447;
}
@media screen and (min-width: 751px) {
  .bg_leftbar_title {
    border-left-width: 5px;
    padding: 10px 0;
    min-height: 55px;
    margin: 60px 0 60px 10px;
  }
  .bg_leftbar_title::before {
    width: 5px;
    left:  -10px;
  }
  .mid_border_title span {
    font-size: 20px;
    padding: 0 10px;
  }
}
/*------左に棒がある塗りタイトル2------*/
.bg_leftbar_title2 {
  position: relative;
  padding: 5px 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin: 40px 0 40px 5px;
}
.bg_leftbar_title2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  width: 2.5px;
}
.bg_leftbar_title2 span {
  font-size: 17px;
  padding: 0 3.3333%;
  line-height: 3.28;
  width: 100%;
  color: #fff;
}
.bg_leftbar_title2.red {
  background: #D0121B;
}
.bg_leftbar_title2.red::before{
  background: #D0121B;
}
.bg_leftbar_title2.brown {
  background: #B28146;
}
.bg_leftbar_title2.brown::before{
  background: #B28146;
}
.bg_leftbar_title2.green {
  background: #165F65;
}
.bg_leftbar_title2.green::before{
  background: #165F65;
}
.bg_leftbar_title2.gray {
  background: #5E5E5E;
}
.bg_leftbar_title2.gray::before{
  background: #5E5E5E;
}
.bg_leftbar_title2.navy {
  background: #052447;
}
.bg_leftbar_title2.navy::before{
  background: #052447;
}
@media screen and (min-width: 751px) {
  .bg_leftbar_title2 {
    border-left-width: 5px;
    padding: 10px 0;
    min-height: 55px;
    margin: 60px 0 60px 10px;
  }
  .bg_leftbar_title2::before {
    width: 5px;
    left:  -10px;
  }
  .mid_border_title2 span {
    font-size: 20px;
    padding: 0 10px;
  }
}
/*------小タイトル------*/
.min_title {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}
.min_title.red {
  color: #D0121B;
}
.min_title.brown {
  color: #B28146;
}
.min_title.green {
  color: #165F65;
}
.min_title.navy {
  color: #052447;
}
.min_title.gray {
  color: #5E5E5E;
}
.text_cap {
  font-size: 10px;
  margin-top: 5px;
}
@media screen and (min-width: 751px) {
  .min_title {
    font-size: 24px;
  }
  .pc_w220 .min_title {
    font-size: 14px;
  }
  .text_cap {
    font-size: 12px;
  }
}
/*ムービータイトル*/
.movie_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
  margin: 20px 0;
  border-left: 3px solid;
  border-right: 3px solid;
  padding: 5px;
  font-size: 17px;
  line-height: 1.2;
  box-sizing: border-box;
}
.movie_title::before,.movie_title::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
}
.movie_title::before {
  left: 2px;
}
.movie_title::after {
  right: 2px;
}
.movie_title span {
  display: block;
  font-weight: 600;
  text-align: center;
}
.movie_title.red {
  color: #D0121B;
  border-color: #D0121B;
}
.movie_title.red::before, .movie_title.red::after {
  background-color: #D0121B;
}
.movie_title.brown {
  color: #B28146;
  border-color: #B28146;
}
.movie_title.brown::before, .movie_title.brown::after {
  background-color: #B28146;
}
.movie_title.green {
  color: #165F65;
  border-color: #165F65;
}
.movie_title.green::before, .movie_title.green::after {
  background-color: #165F65;
}
.movie_title.navy {
  color: #052447;
  border-color: #052447;
}
.movie_title.navy::before, .movie_title.navy::after {
  background-color: #052447;
}
.movie_title.gray {
  color: #5E5E5E;
  border-color: #5E5E5E;
}
.movie_title.gray::before, .movie_title.gray::after {
  background-color: #5E5E5E;
}
@media screen and (min-width: 751px) {
  .movie_title {
    min-height: 40px;
    margin: 40px 0;
    font-size: 30px;
    padding: 5px 35px;
    border-left-width: 6px;
    border-right-width: 6px;
  }
  .movie_title::before {
    left: 3px;
  }
  .movie_title::after {
    right: 3px;
  }
  .pc_w450 .movie_title {
    font-size: 25px;
  }
  .pc_w320 .movie_title {
    font-size: 20px;
  }
  .pc_w240 .movie_title {
    font-size: 20px;
  }
}
/*----------------------------------------------------
共通・動画
----------------------------------------------------*/
.movie_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie_wrap iframe,
.movie_wrap img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*----------------------------------------------------
共通・ボタン（矢印中央ー＞）
----------------------------------------------------*/
.btn_grad {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 10px 35px 10px 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  margin: 0 auto;
}
.btn_grad::before,.btn_grad::after {
  content: "";
  display: block;
  position: absolute;
  
}
.btn_grad::before {
  width: 16px;
  height: 1px;
  top: 50%;
  right: 18px;
  background: #fff;
}
.btn_grad::after {
  top: calc(50% - 6px);
  right: 15px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform-origin: center center;
  transform: rotate(-35deg) skew(20deg);
}
.btn_grand span {
  display: block;
  font-weight: bold;
  width: 100%;
  line-height: 1.2;
}
.btn_grad.red {
  background: rgb(208,18,27);
  background: linear-gradient(270deg, rgba(208,18,27,1) 0%, rgba(155,0,8,1) 100%);
}
.btn_grad.brown {
  background: rgb(178,129,70);
  background: linear-gradient(270deg, rgba(178,129,70,1) 0%, rgba(143,100,46,1) 100%);
}
.btn_grad.green {
  background: rgb(0,117,128);
  background: linear-gradient(270deg, rgba(0,117,128,1) 0%, rgba(0,59,64,1) 100%);
}
.btn_grad.navy {
  background: rgb(0,49,106);
background: linear-gradient(270deg, rgba(0,49,106,1) 0%, rgba(0,25,53,1) 100%);
}
.btn_grad.gray {
  background: rgb(95,95,95);
  background: linear-gradient(270deg, rgba(95,95,95,1) 0%, rgba(16,16,16,1) 100%);
}
@media screen and (min-width: 751px) {
  .btn_grad {
    padding: 10px 70px 10px 30px;
    height: 90px;
    font-size: 25px;
    transition: 0.3s;
  }
  .btn_grad::before {
    width: 32px;
    height: 2px;
    top: calc(50% - 1px);
    right: 35px;
    background: #fff;
    transition: 0.3s;
  }
  .btn_grad::after {
    top: calc(50% - 13px);
    right: 25px;
    width: 25px;
    height: 25px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: center center;
    transform: rotate(-35deg) skew(20deg);
    transition: 0.3s;
  }
  .btn_grad.is_pc_center {
    justify-content: center;
  }
}
@media screen and (min-width: 1201px) {
  .btn_grad:hover::before {
    right: 30px;
    width: 37px;
  }
  .btn_grad:hover::after {
    right: 20px;
  }
}
/*----------------------------------------------------
共通・ボタン（矢印中央＞）
----------------------------------------------------*/
.btn_grad_gt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  min-height: 50px;
  padding: 10px 25px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  margin: 0 auto;
}
.btn_grad_gt::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 15px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: center center;
  transform: rotate(-35deg) skew(20deg);
}
.btn_grad_gt span {
  display: inline-block;
  font-weight: bold;
  max-width: 100%;
  line-height: 1.2;
}
.btn_grad_gt.red {
  background: rgb(208,18,27);
  background: linear-gradient(270deg, rgba(208,18,27,1) 0%, rgba(155,0,8,1) 100%);
}
.btn_grad_gt.brown {
  background: rgb(178,129,70);
  background: linear-gradient(270deg, rgba(178,129,70,1) 0%, rgba(143,100,46,1) 100%);
}
.btn_grad_gt.green {
  background: rgb(0,117,128);
  background: linear-gradient(270deg, rgba(0,117,128,1) 0%, rgba(0,59,64,1) 100%);
}
.btn_grad_gt.navy {
  background: rgb(0,49,106);
background: linear-gradient(270deg, rgba(0,49,106,1) 0%, rgba(0,25,53,1) 100%);
}
.btn_grad_gt.gray {
  background: rgb(95,95,95);
  background: linear-gradient(270deg, rgba(95,95,95,1) 0%, rgba(16,16,16,1) 100%);
}
@media screen and (min-width: 751px) {
  .btn_grad_gt {
    padding: 10px 30px;
    min-height: 50px;
    font-size: 20px;
    transition: 0.3s;
  }
  .btn_grad_gt::after {
    top: calc(50% - 6px);
    right: 25px;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform-origin: center center;
    transform: rotate(-35deg) skew(20deg);
    transition: 0.3s;
  }
}
@media screen and (min-width: 1201px) {
  .btn_grad_gt:hover::after {
    right: 20px;
  }
}
/*----------------------------------------------------
共通・ボタン（矢印下ー＞）
----------------------------------------------------*/

.btn_lr_border_big,
.btn_lr_border_min {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 3px);
  min-height: 50px;
  padding: 10px 35px 10px 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  margin:0 3px 3px 0;
  z-index: 1;
}
.btn_lr_border_min {
  justify-content: center;
  padding: 10px;
  text-align: center;
}
.btn_lr_border_big{
  font-size: 15px;
}
.btn_lr_border_min {
  font-size: 12px;
}
.btn_lr_border_big::before,.btn_lr_border_big::after,
.btn_lr_border_min::before,.btn_lr_border_min::after {
  content: "";
  display: block;
  position: absolute;
  
}

.btn_lr_border_big::before{
  width: 16px;
  height: 1px;
  top: 50%;
  right: 18px;
  background: #fff;
}
.btn_lr_border_min::before {
  width: 16px;
  height: 1px;
  bottom: 15px;
  right: 13px;
  background: #fff;
}
.btn_lr_border_big::after {
  top: calc(50% - 6px);
  right: 15px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform-origin: center center;
  transform: rotate(-35deg) skew(20deg);
}
.btn_lr_border_min::after {
  bottom: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform-origin: center center;
  transform: rotate(-35deg) skew(20deg);
}
.btn_lr_border_big span,
.btn_lr_border_min span {
  display: block;
  font-weight: bold;
  width: 100%;
  line-height: 1.2;
}
.btn_lr_border_big em,
.btn_lr_border_min em {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 3px;
  top: 3px;
  border: 1px solid;
  z-index: 0;
  transition: 0.3s;
}
.btn_lr_border_big.red,
.btn_lr_border_min.red {
  background: #D0121B;
}
.btn_lr_border_big.red em,
.btn_lr_border_min.red em{
  border-color: #D0121B;
}
.btn_lr_border_big.brown,
.btn_lr_border_min.brown {
  background: #B28146;
}
.btn_lr_border_big.brown em,
.btn_lr_border_min.brown em{
  border-color: #B28146;
}
.btn_lr_border_big.green,
.btn_lr_border_min.green {
  background: #165F65;
}
.btn_lr_border_big.green em,
.btn_lr_border_min.green em{
  border-color: #165F65;
}
.btn_lr_border_big.navy,
.btn_lr_border_min.navy {
  background: #00316A;
}
.btn_lr_border_big.navy em,
.btn_lr_border_min.navy em{
  border-color: #00316A;
}
.btn_lr_border_big.gray,
.btn_lr_border_min.gray {
  background: #5E5E5E;
}
.btn_lr_border_big.gray em,
.btn_lr_border_min.gray em{
  border-color: #5E5E5E;
}
@media screen and (min-width: 751px) {
  .btn_lr_border_big,
  .btn_lr_border_min {
    
    min-height: 70px;
    font-size: 25px;
    transition: 0.3s;
  }
  .btn_lr_border_big{
    padding: 10px 70px 10px 30px;
    font-size: 20px;
  }
  .btn_lr_border_min {
    padding: 10px;
    font-size: 18px;

  }
  .btn_lr_border_big::before {
    width: 21px;
    height: 2px;
    top: calc(50% - 0.5px);
    right: 32px;
    background: #fff;
    transition: 0.3s;
  }
  .btn_lr_border_big::after {
    top: calc(50% - 8px);
    right: 25px;
    width: 16px;
    height: 16px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: center center;
    transform: rotate(-35deg) skew(20deg);
    transition: 0.3s;
  }
  .btn_lr_border_min::before {
    width: 16px;
    height: 2px;
    bottom: 16px;
    right: 16px;
  }
  .btn_lr_border_min::after {
    bottom: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: center center;
    transform: rotate(-35deg) skew(20deg);
  }
}
@media screen and (min-width: 1201px) {
  .btn_lr_border_big:hover::before {
    width: 26px;
    right: 27px;
  }
  .btn_lr_border_big:hover::after {
    right: 20px;
  }
  .btn_lr_border_big:hover em,
  .btn_lr_border_min:hover em {
    left: 0;
    top: 0;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}
/*----------------------------------------------------
共通・バナー
----------------------------------------------------*/
.banners {
  margin-top: 30px;
  text-align: center;
  font-size:0;
}
.banners .ban {
  display: inline-block;
  line-height: 0;
  background: #fff;
}
.banners .ban img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .banners .ban+.ban {
    margin-top: 30px;
  }
}
@media screen and (min-width: 751px) {
  .banners {
    margin-top: 75px;
  }
  .banners.pc_w490 .ban {
    width: 49%;
  }
  .banners.pc_w490 .ban+.ban {
    margin-left: 2%;
  }
  .banners.pc_w320 .ban {
    width: 32%;
  }
  .banners.pc_w320 .ban+.ban {
    margin-left: 2%;
  }
  .banners.pc_w240 .ban {
    width: 24%;
  }
  .banners.pc_w240 .ban+.ban {
    margin-left: 1.3%;
  }
  .banners.pc_w195 .ban {
    width: 19.5%;
  }
  .banners.pc_w195 .ban+.ban {
    margin-left: 0.5%;
  }
}
/*----------------------------------------------------
共通・タイトル下にlineが入ったコンテンツ
----------------------------------------------------*/
.con_parts1 {
  overflow: hidden;
}
.con_parts1+.con_parts1 {
  margin-top: 50px;
}
.con_parts1.is_img_left .box_image {
  float: left;
}
.con_parts1.is_img_left .box_text {
  float: right;
}
.con_parts1.is_img_right .box_image {
  float: right;
}
.con_parts1.is_img_right .box_text {
  float: left;
}
.con_parts1 .box_under_line {
  border-bottom: 1px solid #D0121B;
  padding: 20px 0 10px;
}
.con_parts1.is_img_left .box_under_line,
.con_parts1.is_img_left .text {
  padding-left: 0px;
  padding-bottom: 10px;
}
.con_parts1.is_img_right .box_under_line,
.con_parts1.is_img_right .text {
  padding-right: 0px;
  padding-bottom: 10px;
}
.con_parts1 .box_text {
  font-size: 12px;
  width: 100%;
}
.con_parts1 .box_image {
  width: 100%;
}
.con_parts1_title {
  color: #D0121B;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
.con_parts1_subtitle {
  font-size: 8px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 5px;
}
.con_parts1 .text {
  font-size: 12px;
  margin-top: 10px;
}
@media screen and (min-width: 751px) {
  .con_parts1+.con_parts1 {
    margin-top: 80px;
  }
  .con_parts1 .box_text {
    font-size: 14px;
    width: 55%;
  }
  .con_parts1 .box_image {
    width: 45%;
  }
  .con_parts1 .box_under_line {
    border-bottom-width: 2px;
    padding: 12.3636% 0 20px;
  }
  .con_parts1.is_img_left .box_under_line,
  .con_parts1.is_img_left .text {
    padding-left: 18.1818%;
  }
  .con_parts1.is_img_right .box_under_line,
  .con_parts1.is_img_right .text {
    padding-right: 18.1818%;
  }

  .con_parts1_title {
    font-size: 20px;
  }
  .con_parts1_subtitle {
    font-size: 12px;
    margin-top: 10px;
  }
  .con_parts1 .text {
    font-size: 14px;
    margin-top: 20px;
  }
  .con_parts1 .box_text {
    font-size: 14px;
    line-height: 1.6;
  }
  .col .con_parts1 .box_text {
    width: 50%;
  }
  .col .con_parts1 .box_image {
    width: 50%;
  }
  .col .con_parts1.is_img_left .box_under_line,
  .col .con_parts1.is_img_left .text {
    font-size: 14px;
    padding-left: 15px;
  }
  .col .con_parts1.is_img_right .box_under_line,
  .col .con_parts1.is_img_right .text {
    font-size: 14px;
    padding-right: 15px;
  }

}

/*----------------------------------------------------
共通・ローマ数字のコンテンツ
----------------------------------------------------*/
.con_parts2 {
  padding: 45px 0;
  border-top: 1px solid #D0121B;
  border-bottom: 1px solid #D0121B;
}
.con_parts2+.con_parts2 {
  border-top: none;
}
.con_parts2 .roma_num,
.con_parts2 .num_box_title_big,
.con_parts2 .num_box_title_min {
  font-weight: 600;
  color: #D0121B;
}
.con_parts2 .roma_num {
  font-size: 25px;
  text-align: center;
  margin-bottom: 45px;
  line-height: 1;
}
.con_parts2 .num_box_title_big {
  font-size: 18px;
}
.con_parts2 .num_box_title_min {
  font-size: 16px;
  margin-top: 1em;
}
.con_parts2 .text_min {
  font-size: 12px;
  margin-top: 1em;
}


@media screen and (max-width: 750px) {
  .con_parts2 .box_right {
    margin-top: 30px;
  }
  .con_parts2.sp_num_left .con_parts2_inner {
    width: calc(100% - 80px);
  }
  .con_parts2.sp_num_left {
    display: flex;
    justify-content: space-between;
  }
  .con_parts2.sp_num_left .roma_num {
    width: 80px;
    text-align: left;
  }
}
@media screen and (min-width: 751px) {
  .con_parts2 {
    display: flex;
    justify-content: space-between;
    padding: 95px 0;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
  .con_parts2 .roma_num {
    width: 90px;
    font-size: 50px;
    text-align: left;
    margin: auto 0;
  }
  .con_parts2_inner {
    width: calc(100% - 90px);
    display: flex;
    justify-content: space-between;
  }
  .con_parts2 .box_left {
    width: 43%;
    max-width: 400px;
  }
  .con_parts2 .box_right {
    width: 48%;
    max-width: 440px;
  }
  .con_parts2 .num_box_title_big {
    font-size: 30px;
  }
  .con_parts2 .num_box_title_min {
    font-size: 20px;
    margin-top: 1em;
  }
  .con_parts2 .text_min {
    font-size: 14px;
  }
}
/*----------------------------------------------------
共通・100％表示＋タイトル下にlineが入ったコンテンツ
----------------------------------------------------*/
.con_parts3 {
  overflow: hidden;
}
.con_parts3+.con_parts1 {
  margin-top: 50px;
}
.con_parts3.is_img_left .box_image {
  float: left;
}
.con_parts3.is_img_left .box_text {
  font-size: 12px;
  float: right;
}
.con_parts3.is_img_right .box_image {
  float: right;
}
.con_parts3.is_img_right .box_text {
  font-size: 12px;
  float: left;
}
.con_parts3 .box_under_line {
  border-bottom: 1px solid #D0121B;
  padding: 20px 0 10px;
}
.con_parts3.is_img_left .box_under_line,
.con_parts3.is_img_left .text {
  padding-left: 0px;
}
.con_parts3.is_img_right .box_under_line,
.con_parts3.is_img_right .text {
  padding-right: 0px;
}
.con_parts3 .box_text {
  width:100%;
}
.con_parts3 .box_image {
  width: 100%;
}
.con_parts3_title {
  color: #D0121B;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
.con_parts3_subtitle {
  font-size: 8px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 5px;
}
.con_parts3 .text {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
  .con_parts3+.con_parts3 {
    margin-top: 80px;
  }
  .con_parts3 .box_text {
    width: 100%;
  }
  .con_parts3 .box_image {
    width: 100%;
  }
  .con_parts3 .box_under_line {
    border-bottom-width: 2px;
    padding: 0px 0 20px;
  }
  .con_parts3.is_img_left .box_under_line,
  .con_parts3.is_img_left .text {
    padding-left: 0%;
  }
  .con_parts3.is_img_right .box_under_line,
  .con_parts3.is_img_right .text {
    padding-right: 0%;
  }

  .con_parts3_title {
    font-size: 20px;
  }
  .con_parts3_subtitle {
    font-size: 12px;
    margin-top: 10px;
  }
  .con_parts3 .text {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .con_parts3 .box_text {
    font-size: 14px;
    line-height: 1.6;
  }
  .col .con_parts3 .box_text {
    width: 100%;
  }
  .col .con_parts3 .box_image {
    width: 100%;
  }
  .col .con_parts3.is_img_left .box_under_line,
  .col .con_parts3.is_img_left .text {
    font-size: 14px;
    padding-left: 0px;
  }
  .col .con_parts3.is_img_right .box_under_line,
  .col .con_parts3.is_img_right .text {
    font-size: 14px;
    padding-right: 0px;
  }

}

/*----------------------------------------------------
共通・テーブル
----------------------------------------------------*/

table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: auto;
  table-layout: fixed;
}

table tr {
  background-color: #fff;
  padding: .35em;
  border: 2px solid #eee;
}
table tr:last-child{
  border: none;
}
table th{
  font-size: .18px;
  padding: 2em .5em;
  border-right: 2px solid #fff;
  width: 30em;
  text-align: center;
}
table td {
  padding: 2em .5em;
  border-right: 2px solid #eee;
  text-align: left;
  width: 60em;
}
table th {
  font-size: .85em;
}
table thead tr{
  background-color: #D0121B;
  color:#fff;
}
table tbody th {
    border-right: 2px solid #eee;
}
th.non {
    border-right: none;
}
th.gray {
  background-color: #dcdcdc;
}
td.gray {
  background-color: #dcdcdc;
}
.txt{
   text-align: left;
   font-size: .85em;
}
.price{
  color: #000;
  font-weight: bold;
  font-size:1.3em
}
.price span {
    font-size: .6em;
}
.red_bk{
  background:#BF1920
}
.red-txt{
  color:#BF1920
}
.btn{
  background:#e81010;
  border: 2px solid #BF1920;
  color:#fff;
  padding: 1em;
  border-radius:20px;
  display:block;
  text-decoration:none;
  font-size:.8em
}
.btn:hover{
  background: #fff;
  border: 2px solid #BF1920;
  color: #e81010;
  transition: .2s;
}
table .btnarea td {
  padding: .2em .5em;
  border-right:none
}
.table-cell-hr-separator {
    display: block;
    border-bottom: 1px dashed #5E5E5E;
}
.table-cell-hr-separator2 {
    display: block;
    border-bottom: 1px dashed #5E5E5E;
  	padding: 10px 0px 10px 0px;
}
.table-cell-hr-separator3 {
    display: block;
    border-bottom: 1px dashed #5E5E5E;
  	padding: 12px 0px 12px 0px;
}
.table-cell-hr-separatorbottom {
    display: block;
    border-bottom: 1px dashed #5E5E5E;
  	padding: 0px 0px 10px 0px;
}
.table-cell-hr-separatortop {
    display: block;
  	padding: 10px 0px 0px 0px;
}
th.width10 {
        width: 12%;
    }
th.width102 {
        width: 10%;
    }
    
td.width10 {
        width: 12%;
    }
td.width102 {
        width: 10%;
    }
td.width15 {
        width: 15%;
    }
td.width30 {
        width: 30%;
    }
td.width35 {
        width: 37%;
    }
    
@media screen and (max-width: 750px) {
table {
  border-collapse: collapse;
  margin: 0 -7%;
  padding: 0;
  width: auto;
  table-layout: fixed;
}

table tr {
  background-color: #fff;
  padding: .35em;
  border: 2px solid #eee;
}
table tr:last-child{
  border: none;
}
table th{
  font-size: .18px;
  padding: 2em .5em;
  border-right: 2px solid #fff;
  width: 30em;
  text-align: center;
}
table td {
  padding: 2em .5em;
  border-right: 2px solid #eee;
  text-align: left;
  width: 60em;
}
table th {
  font-size: .85em;
}
table thead tr{
  background-color: #D0121B;
  color:#fff;
}
table tbody th {
    border-right: 2px solid #eee;
}



  .wrap{
     overflow-x: scroll;
  }
th.width10 {
        width: 90px;
    }
th.width102 {
        width: 90px;
    }

td.width10 {
        width: 90px;
    }
td.width102 {
        width: 90px;
    }
td.width15 {
        width: 90px;
    }
td.width30 {
        width: 360px;
    }
td.width35 {
        width: 370px;
    }
}
.gap {
    padding-top: 132px;
    margin-top: -132px;
}
