@charset "utf-8";

/*
vw基準 375px
*/

/*
再定義
*/
html.JS h2,
html.JS h3{
  margin-bottom: 8vw;
}

@media screen and (min-width: 768px) {
  html.JS h2,
  html.JS h3{
    margin-bottom: 40px;
  }
}

/*
レイアウト
*/

.disp-pc{
  display: none;
}

@media screen and (min-width: 768px) {
  .disp-sp{
    display: none;
  }
  .disp-pc{
    display: block;
  }
}

.ors-section{
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .ors-section{
    padding: 100px 0;
  }
}

.ors-container{
  padding: 0 5.3333333333vw;
}
@media screen and (min-width: 1100px) {
  .ors-container{
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0;
  }
}

.ors-section__inner{
  padding: 8vw 5.3333333333vw;
  margin-bottom: 8vw;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .ors-section__inner{
    padding: 50px;
    margin-bottom: 40px;
  }
}

.ors-section__image{
  text-align: center;
  margin-bottom: 5.333vw;
}
@media screen and (min-width: 768px) {
  .ors-section__image{
    margin-bottom: 20px;
  }
}

.top-border{
  border-top: 1px solid #CCC;
}

.ors-bg-gray{
  background-color: #f6f6f6;
}

.ors-bg-white{
  background-color: #FFF;
}

.ors-rayout-col2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ors-rayout-col2 > .ors-rayout-col2__item{
  width: 100%;
  background-color: #FFF;
  padding: 8.533vw;
  margin-bottom: 8.533vw;
}
@media screen and (min-width: 768px) {
  .ors-rayout-col2 > .ors-rayout-col2__item{
    width: calc(50% - 16px);
    padding: 32px;
    margin-bottom: 32px;
  }
}

.ors-rayout-col3{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ors-rayout-col3 > .ors-rayout-col3__item{
  background-color: #FFF;
  width: 100%;
  margin-bottom: 8.533vw;
}
@media screen and (min-width: 768px) {
  .ors-rayout-col3 > .ors-rayout-col3__item{
    width: calc(33.33% - 16px);
    margin-bottom: 0;
  }
}

/*
リンク
*/
.ors-link__arrow:hover{
  text-decoration: underline;
}

.ors-link__arrow::after{
  content: "";
  background: url(../image/common/icon_text_link.svg);
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: center;
  margin-left: 5px;
}

.ors-link__blank:hover{
  text-decoration: underline;
}
.ors-link__blank::after{
  content: "";
  background: url(../image/common/icon_blank_link.svg);
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: top;
  margin-left: 5px;
  transform: translateY(4px);
}

/*
 テキスト
*/

.ors-section__h2{
  font-size: 6.9333vw;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .ors-section__h2{
    font-size: 36px;
  }
}

.ors-section__h3{
  font-size: 5.8666vw;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .ors-section__h3{
    font-size: 28px;
  }
}

.ors-section__h4{
  font-size: 5.3333333333vw;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 6vw;
}
@media screen and (min-width: 768px) {
  .ors-section__h4{
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.ors-section__h5{
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 6.9333vw;
}
@media screen and (min-width: 768px) {
  .ors-section__h5{
    font-size: 20px;
    margin-bottom: 26px;
  }
}


.ors-section__text{
  font-size: 4vw;
  margin-bottom: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .ors-section__text{
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.ors-section__text.mb0{
  margin-bottom: 0;
}

.ors-section__text-s{
  font-size: 3.7333333333vw;
}

.tx-sup{
  font-size: 3.7333333333vw;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .ors-section__text-s{
    font-size: 14px;
  }

  .tx-sup{
    font-size: 14px;
  }
}

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

.tx-red{
  color: #a2201c;
}

/*
ブロック要素
*/
.ors-section__img{
  text-align: center;
  margin-bottom: 40px;
}
.ors-section__img img{
  max-width: 100%;
  margin: 0 auto;
}

/*
リスト
*/
.ors-list-item{
  margin-bottom: 10.6666666666vw;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .ors-list-item{
    margin-bottom: 40px;
    font-size: 16px;
  }
}

.ors-list-item.mb0{
  margin-bottom: 0;
}

.ors-list-item__disc{
  list-style: disc;
  margin-left: 4.8vw;
  margin-bottom: 2.6666vw;
}
@media screen and (min-width: 768px) {
  .ors-list-item__disc{
    margin-left: 18px;
    margin-bottom: 10px;
  }
}

.ors-list-item__disc:last-child{
  margin-bottom: 0;
}

.ors-list-item__decimal{
  list-style: decimal;
  margin-left: 4.8vw;
}
@media screen and (min-width: 768px) {
  .ors-list-item__decimal{
    margin-left: 18px;
  }
}

.ors-list-item__line{
  position: relative;
  padding-left: 3.2vw;
}
@media screen and (min-width: 768px) {
  .ors-list-item__line{
    padding-left: 12px;
  }
}

.ors-list-item__line::before{
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.ors-list-item__check{
  padding-left: 6.4vw;
  margin-bottom: 4.8vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ors-list-item__check{
    padding-left: 28px;
    margin-bottom: 20px;
  }
}

.ors-list-item__check::before{
  content: "";
  background: url(../image/common/icon_list_check.svg) no-repeat;
  background-size: cover;
  width: 4.2666666666vw;
  height: 4.2666666666vw;
  position: absolute;
  top: 1.066666666vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .ors-list-item__check::before{
    width: 18px;
    height: 18px;
    top: 5px;
    left: 0;
  }
}

.ors-list-item__check--black{
  padding-left: 6.4vw;
  margin-bottom: 2.6666vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ors-list-item__check--black{
    padding-left: 28px;
    margin-bottom: 10px;
  }
}

.ors-list-item__check--black::before{
  content: "";
  background: url(../image/common/icon_list_check_black.svg) no-repeat #DDD;
  background-size: cover;
  width: 5.3333vw;
  height: 5.3333vw;
  position: absolute;
  top: 1.066vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .ors-list-item__check--black::before{
    width: 20px;
    height: 20px;
    top: 5px;
    left: 0;
  }
}

.ors-list-item__check--red{
  padding-left: 6.4vw;
  margin-bottom: 2.6666vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ors-list-item__check--red{
    padding-left: 28px;
    margin-bottom: 10px;
  }
}

.ors-list-item__check--red::before{
  content: "";
  background: url(../image/common/icon_list_check_red.svg) no-repeat #f2e0df;
  background-size: cover;
  width: 5.3333vw;
  height: 5.3333vw;
  position: absolute;
  top: 1.066vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .ors-list-item__check--red::before{
    width: 20px;
    height: 20px;
    top: 5px;
    left: 0;
  }
}

.ors-list-item__sup{
  position: relative;
  padding-left: 8vw;
  font-size: 3.4666vw;;
}
@media screen and (min-width: 768px) {
  .ors-list-item__sup{
    font-size: 13px;
    padding-left: 30px;
  }
}

.ors-list-item__sup span{
  position: absolute;
  left: 0;
  top: 0;
}

/*
ボタン
*/
.ors-button-center{
  text-align: center;
}

.ors-button-center .c-button{
  min-width: 332px;
  padding-right: 40px;
}

@media screen and (max-width: 767px) {
  .ors-button-center .c-button{
    width: 100%;
  }
}


/*
 ローカルナビゲーション
*/
.ors-nav{
  border-bottom: 1px solid #CCC;
}

@media screen and (min-width: 768px) {
  .ors-nav{
    border-bottom: 1px solid #CCC;
  }

  .ors-nav__inner{
    display: flex;
    justify-content: space-between;
  }

  .ors-nav__list{
    display: flex;
    justify-content:flex-start;
    position: relative;
    width: calc(100% - 230px);
  }

  .ors-nav__item{
    margin-right: 30px;
    padding: 17px 0;
    position: relative;
  }

  .ors-nav__item a{
    font-weight: bold;
  }

  .ors-nav__item a:hover{
    color: #a2201c;
  }

  .ors-nav__item.current::after{
    content:"";
    height: 3px;
    width: 100%;
    background-color: #a2201c;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .ors-nav__item.current a{
    color: #a2201c;
  }

  .ors-nav__item--other{
    font-size: 13px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }

  .ors-nav__item--other a:hover{
    color: #a2201c;
    text-decoration: underline;
  }

  .ors-nav__item--other::after{
    content: "";
    background: url(../image/common/icon_text_link.svg) right center no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 12px;
    margin-left: 7px;
    transform: translateY(-1px);
  }

  .ors-nav__btn{
  }

  .ors-nav__btn a{
    display: block;
    color: #FFF !important;
    text-align: center;
    padding: 17px 25px;
    font-weight: bold;
    background-color: #a2201c;
  }
}

@media screen and (min-width:768px) and ( max-width:1023px) {
  .ors-nav__item{
    font-size: 1.5vw;
    margin-right: 2.5vw;
  }
  .ors-nav__btn{
    font-size: 1.5vw;
  }
  .ors-nav__btn a{
    padding: 2vw 1.56vw;
  }
}

@media screen and (max-width: 767px) {
  .ors-nav .ors-container{
    padding: 0;
  }

  .ors-nav__inner{
    height: 0;
    overflow: hidden;
  }

  .show .ors-nav__inner{
    height: auto;
    overflow: visible;
  }

  .ors-nav__disp{
    font-weight: bold;
    padding: 4vw 5.866666666vw;
    position: relative;
    font-size: 4.266666666vw;
  }

  .ors-nav__disp:before,
  .ors-nav__disp:after {
  	content: "";
  	position: absolute;
    background-color: #666;
  }

  .ors-nav__disp:before{
    width: 4.2666666666vw;
    height: 0.533333333vw;;
    right: 4vw;
    top: calc(50% - 1px / 2);
  }

  .ors-nav__disp:after{
    width: 0.533333333vw;
    height: 4.2666666666vw;
    right: 5.866666666vw;
    top: calc(50% - 4vw / 2);
  }

  .show .ors-nav__disp:after{
    display: none;
  }

  .ors-nav__item{
    border-top: 1px solid #CCC;
    font-size: 4.266666666vw;
  }

  .ors-nav__item--other{
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    font-size: 3.733333333vw;
  }

  .ors-nav__item a,
  .ors-nav__item--other a{
    display: block;
    padding: 4vw 5.333333333vw;
    position: relative;
  }

  .ors-nav__item a::after,
  .ors-nav__item--other a::after{
    content: "";
    border-top: solid 0.533333333vw #666;
    border-right: solid 0.533333333vw #666;
    width: 3.2vw;
    height: 3.2vw;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3.2vw / 2);
    right: 5.333333333vw;
  }

  .ors-nav__btn{
    margin: 4vw;
  }

  .ors-nav__btn a{
    display: block;
    background-color: #a2201c;
    color: #FFF !important;
    text-align: center;
    padding: 4vw 5.333333333vw;
    font-size: 4.266666666vw;
  }
}

.ors-nav__btn a{
  transition: opacity 0.5s;
}

.ors-nav__btn a:hover{
  opacity: 0.7;
}


/*
関連リンク or カテゴリ一覧
*/
.ors-link-related.ors-section{
  padding-bottom: 0;
}

.ors-link-related .ors-link-related__inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ors-link-related .ors-button{
  width: 100%;
}

.ors-link-related .c-button{
  background-color: #FFF;
  border-color: #CCC;
  color: #000;
  margin-bottom: 4vw;
  text-align: left;
  justify-content: flex-start;
  width: 100%;
}


@media screen and (min-width: 768px) {
  .ors-link-related .ors-button{
    width: calc(50% - 20px);
    max-width: 332px;
  }

  .ors-link-related .c-button{
    margin-bottom: 15px;
  }

  .ors-link-related .ors-button .c-button{
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .ors-link-related .ors-button{
    width: calc(33.333% - 20px);
    max-width: 332px;
  }
}

.ors-link-related .ors-button.current .c-button{
  color: #a2201c;
}

/*
マージン・パディング
*/
.mb0{
  margin-bottom: 0;
}
.mb32{
  margin-bottom: 8.5333vw;
}
@media screen and (min-width: 768px) {
  .mb32{
    margin-bottom: 32px;
  }
}

.mb60{
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .mb60{
    margin-bottom: 60px;
  }
}


.mb70{
  margin-bottom: 18.6666vw;
}
@media screen and (min-width: 768px) {
  .mb70{
    margin-bottom: 70px;
  }
}

.mb100{
  margin-bottom: 26.6666vw;
}
@media screen and (min-width: 768px) {
  .mb100{
    margin-bottom: 100px;
  }
}

.pdt0{
  padding-top: 0;
}

.pdb0{
  padding-bottom: 0;
}

.pdb30{
  padding-bottom: 30px;
}

/*
テーブル
*/
@media screen and (max-width:767px) {
  .ors-rayout-table {
    width: 100%;
    overflow: scroll;
  }
}
.ors-rayout-table table{
  width: 100%;
  font-size: 4.2666vw;
  margin-bottom: 0;
  table-layout: fixed;
}
@media screen and (max-width:767px) {
  .ors-rayout-table table{
    width:1000px;
  }
}
@media screen and (min-width: 768px) {
  .ors-rayout-table table{
    font-size: 16px;
  }
}

.ors-rayout-table table th{
  font-size: 4.2666vw;
  vertical-align: top;
  padding: 5.3333vw 8vw;
}

@media screen and (min-width: 768px) {
  .ors-rayout-table table th{
    font-size: 16px;
    padding: 15px 30px;
  }
}

.ors-rayout-table table thead th{
  color: #FFF;
  background-color: #707f8b;
  font-size: 4.2666vw;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .ors-rayout-table table thead th{
    font-size: 16px;
  }
  .ors-rayout-table table thead th:first-child{
    width: 33.33%;
  }
}

.ors-rayout-table table tbody th{
  font-weight: bold;
  width: 33.33%;
}

.ors-rayout-table table td{
  width: 100%;
  font-size: 4.2666vw;
  padding: 5.3333vw;

}

@media screen and (min-width: 768px) {
  .ors-rayout-table table td{
    font-size: 16px;
    padding: 20px;
    width: 66.66%;
  }
}

@media screen and (max-width: 767px) {
  .ors-rayout-table::before {
    content: "左右にスライドさせてご確認頂けます。";
    background: url(../image/common/ic_table_scrool.png) no-repeat left center;
    background-size: 3.7333vw;
    padding-left: 3.7333vw;
    display: block;
    text-align: left;
    font-size: 3vw;
    line-height: 1;
    margin-bottom: 4vw;
  }
}

.ors-rayout-table table td .ors-list-item{
  margin-bottom: 0;
}



/*
HERO
*/
.ors-hero{
  display: flex;
  align-items: center;
  height: 34.6666vw;
  background: url(../image/mv_sp.jpg) no-repeat center;
  background-size: cover;
  color: #FFF;
}

.ors-hero .ors-hero__title{
  font-size: 7.6vw;
  font-weight: bold;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
  line-height: 1.4;
  font-weight: bold;
}

.ors-hero__text{
  font-size: 4.2vw;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .ors-hero{
    height: 94px;
    background: url(../image/mv_pc.jpg) no-repeat center -40px;
    background-size: cover;
  }

  .ors-hero .ors-hero__title{
    font-size: 26px;
  }

  .ors-top-hero__text{
    font-size: 20px;
  }
}


