@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: 1030px);
body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================
	三角
	@include mx_sankaku(幅,高さ,色,色hover,向き);	
===============================================================*/
/*===============================================================
	センタリング
	@include mx_margin_center();	
===============================================================*/
/*===============================================================
	斜線の背景
	@include mx_slash($color1,$color2,$width);	
===============================================================*/
/*===============================================================
	グラデーション
	@include mx_grade(色1,色2,向き（横:h / 縦:v）)
===============================================================*/
/*===============================================================

	_font.scss

===============================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("/special/common/font/noto_sans/NotoSansCJKjp-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  src: url("/special/common/font/noto_sans/NotoSansCJKjp-Black_subset.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 400;
  src: url("/special/common/font/yakuhan/YakuHanJP-Regular.woff2") format("woff2"), url("/assets/font/yakuhan/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 700;
  src: url("/special/common/font/yakuhan/YakuHanJP-Bold.woff2") format("woff2"), url("/assets/font/yakuhan/YakuHanJP-Bold.woff") format("woff");
}
body #page {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif !important;
}

@font-face {
  font-family: "icomoon";
  src: url("/special/app/myjcom_cp/300dl//common/font/icomoon/icomoon.eot?72nyds");
  src: url("/special/app/myjcom_cp/300dl//common/font/icomoon/icomoon.eot?72nyds#iefix") format("embedded-opentype"), url("/special/app/myjcom_cp/300dl//common/font/icomoon/icomoon.ttf?72nyds") format("truetype"), url("/special/app/myjcom_cp/300dl//common/font/icomoon/icomoon.woff?72nyds") format("woff"), url("/special/app/myjcom_cp/300dl//common/font/icomoon/icomoon.svg?72nyds#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arw-bottom:before {
  content: "\e900";
}

.icon-arw-left:before {
  content: "\e901";
}

.icon-arw-right:before {
  content: "\e902";
}

.icon-arw-top:before {
  content: "\e903";
}

/*===============================================================

	_base.scss

===============================================================*/
body {
  width: 100%;
  text-align: left;
  -webkit-text-size-adjust: none;
  /* 縦横文字サイズ同じ */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.fixed {
  position: fixed;
  left: 0;
}

html,
body {
  height: 100%;
}

body > footer {
  position: sticky;
  top: 100vh;
}

a {
  -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, opacity 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, opacity 0.3s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus,
a:active,
a:visited {
  text-decoration: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img {
  width: 100%;
  height: 100%;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

@media screen and (max-width: 800px) {
  .ios .android,
  .android .ios {
    display: none;
  }
}
/*===============================================================

	基本文字サイズ、装飾

===============================================================*/
h1,
h2,
h3,
h4,
h5 {
  line-height: 1;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

/*===============================================================

	thiscontents / section_wrp

===============================================================*/
.thiscontents .section_wrp {
  background-color: #f2f2f2;
  padding-bottom: min(150px,15vw);
  padding-top: 1px;
}
@media screen and (max-width: 800px) {
  .thiscontents .section_wrp {
    padding-top: 1vw;
    padding-bottom: 10vw;
  }
}

/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
}

/*===============================================================

	PC/SP/TABLET

===============================================================*/
.pc,
.pc_tablet {
  display: block;
}

.tablet {
  display: none;
}

.tablet_sm {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

@media screen and (max-width: 1030px) {
  .pc {
    display: none;
  }
  .tablet,
  .sp_tablet {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
  .sp_none {
    display: none !important;
  }
}
/*===============================================================

	PAGETOP

===============================================================*/
#btn_pagetop {
  width: 100%;
  overflow: hidden;
}

#btn_pagetop a {
  display: block;
  position: absolute;
  right: -300px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #d2191a;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  position: fixed;
  border-radius: 30px;
}

#btn_pagetop a:hover {
  background-color: #c00;
}

#btn_pagetop a:after {
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 2px;
}

@media screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
}
/*===============================================================

	レイアウト
	_rayout.scss

===============================================================*/
.full_width {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 800px) {
  .full_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.max_width {
  max-width: 1900px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.wide_width {
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.content_width {
  max-width: 1130px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.narrow_width {
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.btn_width {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    max-width: inherit;
  }
}

/*===============================================================

	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する

===============================================================*/
.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 5vw;
    padding-bottom: 10vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*===============================================================

	content 
	個別のコンテンツ

===============================================================*/
.content + .content {
  margin-top: 100px;
}

.content + .headline {
  margin-top: 100px;
}

.headline + .content {
  margin-top: 50px;
}

.content .content + *,
.content * + .content {
  margin-top: 70px;
}

.content_title + .content {
  margin-top: 0;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
} /* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 10vw;
  }
  .content + .headline {
    margin-top: 10vw;
  }
  .headline + .content {
    margin-top: 3vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
} /* for SP */
/*===============================================================

    btn_round

===============================================================*/
.btn_round {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: min(16px,1.6vw);
  font-weight: bold;
  width: 100%;
  height: min(70px,7vw);
  color: #fff !important;
  background: #E93817;
  border-radius: 100vh;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn_round .icon-arw-right {
  position: absolute;
  top: 50%;
  right: min(30px,3vw);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: min(14px,1.4vw);
}
@media (hover) {
  .btn_round:hover {
    background: #D9161C;
  }
}
@media screen and (max-width: 800px) {
  .btn_round {
    font-size: 3.4vw;
    height: 14vw;
  }
  .btn_round .icon-arw-right {
    right: 5vw;
    font-size: 3vw;
  }
}

/*===============================================================

    btn_line

===============================================================*/
.btn_line {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: min(16px,1.6vw);
  font-weight: bold;
  width: 100%;
  height: min(70px,7vw);
  color: #E93817 !important;
  background: #fff;
  border: 2px solid #E93817;
  border-radius: 100vh;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn_line .icon-arw-right {
  position: absolute;
  top: 50%;
  right: min(30px,3vw);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: min(14px,1.4vw);
}
@media (hover) {
  .btn_line:hover {
    background: #FCE6E2;
  }
}
@media screen and (max-width: 800px) {
  .btn_line {
    font-size: 3.4vw;
    height: 14vw;
  }
  .btn_line .icon-arw-right {
    right: 5vw;
    font-size: 3vw;
  }
}

/*===============================================================

    btn_cp

===============================================================*/
.btn_cp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: min(18px,1.8vw);
  font-weight: bold;
  width: 100%;
  height: min(70px,7vw);
  color: #E93817 !important;
  background: #FFD833;
  border: 3px solid #FDC429;
  border-radius: 100vh;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn_cp .icon-arw-right {
  position: absolute;
  top: 50%;
  right: min(30px,3vw);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: min(14px,1.4vw);
}
@media (hover) {
  .btn_cp:hover {
    background: #FDC429;
  }
}
@media screen and (max-width: 800px) {
  .btn_cp {
    font-size: 3.4vw;
    height: 14vw;
  }
  .btn_cp .icon-arw-right {
    right: 5vw;
    font-size: 3vw;
  }
}

/*===============================================================

    btn_square

===============================================================*/
.btn_square {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: min(16px,1.8vw);
  font-weight: bold;
  width: 100%;
  height: min(90px,9vw);
  color: #E93817 !important;
  background: #fff;
  border: 2px solid #D9161C;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn_square .icon-arw-bottom {
  position: absolute;
  top: 50%;
  right: min(20px,2vw);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn_square:active {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.btn_square_num {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  left: min(20px,2vw);
  margin: auto;
  font-size: min(14px,1.4vw);
  width: min(28px,2.8vw);
  height: min(28px,2.8vw);
  background: #E93817;
  color: #fff;
  border-radius: 50%;
}
@media (hover) {
  .btn_square:hover {
    background: #FCE6E2;
  }
}
@media screen and (max-width: 800px) {
  .btn_square {
    font-size: 3.6vw;
    height: 16vw;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .btn_square_num {
    left: 3vw;
    font-size: 3.2vw;
    width: 6vw;
    height: 6vw;
    padding-bottom: 0.3vw;
  }
  .btn_square .icon-arw-bottom {
    right: 3vw;
    font-size: 3vw;
  }
}

/*===============================================================

	PAGETOP

===============================================================*/
#btn_pagetop {
  width: 100%;
  overflow: hidden;
}

#btn_pagetop a {
  display: block;
  position: fixed;
  right: -300px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #d2191a;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  border-radius: 30px;
}

#btn_pagetop a:hover {
  background-color: #c00;
}

#btn_pagetop a:after {
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
} /* for SP max-width: 736px */
/*===============================================================

	_utils.scss 2021/9/24

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

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

@media only screen and (max-width: 800px) {
  .sp_align_center {
    text-align: center !important;
  }
  .sp_align_right {
    text-align: right !important;
  }
  .sp_align_left {
    text-align: left !important;
  }
}
/* for SP  */
/*===============================================================

	フロート関係

===============================================================*/
.clear {
  width: 100%;
  overflow: hidden;
}

.clearboth {
  clear: both;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
}
@media screen and (max-width: 1030px) {
  .fixed {
    position: fixed;
    top: 0;
  }
}

/*===============================================================

	PC/SP/TABLET

===============================================================*/
.sp {
  display: none;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .pc {
    display: none;
  }
  .tablet,
  .pc_tablet,
  .sp_tablet {
    display: block;
  }
}
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
}
/* for SP max-width: 800px */
/*===============================================================

	img fig

===============================================================*/
.fig img,
.fitimg img,
.photo img {
  width: 100%;
  height: auto;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
/* for SP max-width: 800px */
/*===============================================================

	マージン

===============================================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.47vw;
  }
  .mt10 {
    margin-top: 0.93vw;
  }
  .mt15 {
    margin-top: 1.4vw;
  }
  .mt20 {
    margin-top: 1.87vw;
  }
  .mt25 {
    margin-top: 2.34vw;
  }
  .mt30 {
    margin-top: 2.8vw;
  }
  .mt40 {
    margin-top: 3.74vw;
  }
  .mt50 {
    margin-top: 4.67vw;
  }
  .mt60 {
    margin-top: 5.61vw;
  }
  .mt70 {
    margin-top: 6.54vw;
  }
  .mt80 {
    margin-top: 7.48vw;
  }
  .mt90 {
    margin-top: 8.41vw;
  }
  .mt100 {
    margin-top: 9.35vw;
  }
  .mb05 {
    margin-bottom: 0.47vw;
  }
  .mb10 {
    margin-bottom: 0.93vw;
  }
  .mb15 {
    margin-bottom: 1.4vw;
  }
  .mb20 {
    margin-bottom: 1.87vw;
  }
  .mb25 {
    margin-bottom: 2.34vw;
  }
  .mb30 {
    margin-bottom: 2.8vw;
  }
  .mb40 {
    margin-bottom: 3.74vw;
  }
  .mb50 {
    margin-bottom: 4.67vw;
  }
}
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media screen and (max-width: 800px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.63vw;
  }
  .mt10 {
    margin-top: 1.25vw;
  }
  .mt15 {
    margin-top: 1.88vw;
  }
  .mt20 {
    margin-top: 2.5vw;
  }
  .mt25 {
    margin-top: 3.13vw;
  }
  .mt30 {
    margin-top: 3.75vw;
  }
  .mt40 {
    margin-top: 5vw;
  }
  .mt50 {
    margin-top: 6.25vw;
  }
  .mt60 {
    margin-top: 7.5vw;
  }
  .mt70 {
    margin-top: 8.75vw;
  }
  .mt80 {
    margin-top: 10vw;
  }
  .mt90 {
    margin-top: 11.25vw;
  }
  .mt100 {
    margin-top: 12.5vw;
  }
  .mb05 {
    margin-bottom: 0.63vw;
  }
  .mb10 {
    margin-bottom: 1.25vw;
  }
  .mb15 {
    margin-bottom: 1.88vw;
  }
  .mb20 {
    margin-bottom: 2.5vw;
  }
  .mb25 {
    margin-bottom: 3.13vw;
  }
  .mb30 {
    margin-bottom: 3.75vw;
  }
  .mb40 {
    margin-bottom: 5vw;
  }
  .mb50 {
    margin-bottom: 6.25vw;
  }
}
/* for SP max-width: 800px */
/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
}

.bg_fixed {
  background-attachment: fixed;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .fixed {
    position: fixed;
    top: 0;
  }
}
/* for tablet max-width: 940px */
/* SP向けレイアウトの指定：～800px */
/* for SP */
/*===============================================================

	テーブル

===============================================================*/
.table {
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  border-collapse: separate;
  border-spacing: 0;
}

.table th,
.table td {
  padding: 10px;
  border: solid 1px #ddd;
  border-bottom: 0;
  color: #000;
}

.table th {
  font-weight: bold;
  border-right: 0;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.table td {
  color: #000;
}

.table td + td {
  border-left: 0;
}

.table tr:nth-child(odd) {
  background: #fff;
}

.table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}

/* タブレット */
/* for tablet */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
  .table {
    padding: 0;
    margin-top: 0px;
  }
  .table th,
  .table td {
    padding: 3vw;
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .table tr:nth-child(odd),
  .table tr:nth-child(even) {
    background: #fff;
  }
  .table_wrp_scroll {
    overflow-y: scroll;
  }
  .table_wrp_scroll .table {
    min-width: 200vw;
  }
}
/* for SP */
/*===============================================================
	indentlist
===============================================================*/
.indentlist li {
  padding-left: 1em;
  text-indent: -1em;
}
.indentlist li + li {
  margin-top: 0.5em;
}

/*===============================================================

	page_header

===============================================================*/
.page_header {
  position: relative;
  width: 100%;
  background: #E93817;
  z-index: 0;
}
.page_header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(/special/app/myjcom_cp/300dl//common/images/header_icons.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}
.page_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1130px;
  margin-inline: auto;
  padding: min(80px,8vw) 50px min(120px,12vw);
  width: 100%;
  height: 100%;
}
.page_header_icon {
  width: min(60px,6vw);
  height: min(60px,6vw);
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 50px;
          box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 50px;
  border: solid 2px #fff;
}
.page_header_title {
  margin-top: min(20px,2vw);
  font-size: min(35px,3.5vw);
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .page_header::before {
    background-image: url(/special/app/myjcom_cp/300dl//common/images/header_icons_sp.svg);
  }
  .page_header_inner {
    padding: 10vw 5vw 18vw;
  }
  .page_header_icon {
    width: 12vw;
    height: 12vw;
    border-radius: 3px;
    border: solid 1px #fff;
  }
  .page_header_title {
    margin-top: 3.5vw;
    font-size: 5vw;
  }
}

/*===============================================================

	section_localnav

===============================================================*/
.section_localnav {
  margin-top: max(-45px,-4.5vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_localnav > :not(:nth-child(2n-1)) {
  margin-left: min(30px,3vw);
}
.section_localnav_btn {
  width: 100%;
  width: min(400px,40vw);
}
@media screen and (max-width: 800px) {
  .section_localnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: -8vw;
  }
  .section_localnav > :not(:nth-child(2n-1)) {
    margin: 2.5vw auto 0;
  }
  .section_localnav_btn {
    width: calc(100% - 20vw);
    margin-inline: auto;
  }
}

/*===============================================================

	section_cp

===============================================================*/
.section_cp {
  margin-top: min(100px,10vw);
  /*---------------------------------------------------------------
  	section_cp_apply
  ---------------------------------------------------------------*/
  /*-------------------------------------------------------------
  bnr_block
  -------------------------------------------------------------*/
}
.section_cp_inner {
  position: relative;
}
.section_cp_flag {
  position: absolute;
  top: max(-20px,-2vw);
  left: min(30px,3vw);
  width: min(80px,8vw);
  z-index: 1;
}
.section_cp_kv {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.section_cp_body {
  position: relative;
  background: #fff;
  padding: min(60px,6vw);
  border-radius: 0 0 10px 10px;
}
.section_cp_deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.section_cp_deco img {
  width: min(180px,16vw);
}
.section_cp_title {
  width: min(600px,60vw);
  margin-inline: auto;
}
.section_cp_lead {
  text-align: center;
  font-size: min(16px,1.6vw);
  font-weight: bold;
  line-height: 2;
  margin-top: min(40px,4vw);
}
.section_cp_qr {
  margin-top: min(60px,6vw);
  margin-inline: auto;
  width: min(700px,70vw);
}
.section_cp_qr_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFD833;
  padding: min(15px,1.5vw);
  border-radius: 5px;
}
.section_cp_qr_txt {
  width: calc(100% - min(100px,10vw));
  text-align: center;
}
.section_cp_qr_title {
  font-size: min(20px,2vw);
  font-weight: bold;
  line-height: 1.6;
  color: #E93817;
}
.section_cp_qr_text {
  margin-top: min(5px,.5vw);
  font-size: min(16px,1.6vw);
  line-height: 1.6;
}
.section_cp_qr_img {
  width: min(100px,10vw);
  height: auto;
  line-height: 0;
}
.section_cp_qr_img img {
  line-height: 0;
}
.section_cp_btn {
  margin-top: min(60px,6vw);
  margin-inline: auto;
  width: min(400px,40vw);
  text-align: center;
}
.section_cp_btn_note {
  font-size: min(12px,1.2vw);
  margin-top: min(10px,1vw);
}
.section_cp_apply {
  margin-top: min(60px,6vw);
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
}
.section_cp_apply_header {
  padding: min(30px,3vw);
  background: #E93817;
}
.section_cp_apply_title {
  font-size: min(25px,2.5vw);
  letter-spacing: 0.05em;
  color: #fff;
}
.section_cp_apply_lead {
  font-size: min(16px,1.6vw);
  color: #fff;
  margin-top: min(15px,1.5vw);
}
.section_cp_apply_text {
  font-size: min(16px,1.6vw);
  line-height: 1.6;
}
.section_cp_apply_body {
  background: #FFDFD9;
}
.section_cp_apply_img {
  width: 100%;
  line-height: 0;
}
@media screen and (max-width: 800px) {
  .section_cp {
    margin-top: 10vw;
    padding: 0 5vw;
    /*---------------------------------------------------------------
    	section_cp_apply
    ---------------------------------------------------------------*/
  }
  .section_cp_flag {
    top: -3vw;
    left: 3vw;
    width: 12vw;
    z-index: 3;
  }
  .section_cp_body {
    padding: 7vw 5vw 6vw;
    border-radius: 0 0 1vw 1vw;
    overflow: hidden;
  }
  .section_cp_deco {
    width: 120%;
    margin-left: -10%;
  }
  .section_cp_deco img {
    width: 20vw;
  }
  .section_cp_title {
    width: 100%;
  }
  .section_cp_lead {
    font-size: 3.4vw;
    margin-top: 3vw;
  }
  .section_cp_btn {
    margin-top: 6vw;
    width: 100%;
  }
  .section_cp_btn_note {
    font-size: 3vw;
    margin-top: 2vw;
  }
  .section_cp_apply {
    margin-top: 5vw;
  }
  .section_cp_apply_header {
    padding: 5.5vw 5vw 5vw;
  }
  .section_cp_apply_title {
    font-size: 4.5vw;
    letter-spacing: 0.05em;
  }
  .section_cp_apply_lead {
    margin-top: 2vw;
    font-size: 3.4vw;
    letter-spacing: 0.05em;
  }
  .section_cp_apply_text {
    font-size: 3.4vw;
  }
  .section_cp_apply_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_cp_apply_img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section_cp_apply_txt {
    width: 100%;
    padding: 5vw 5vw 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section_cp_apply_text {
    font-size: 3.8vw;
  }
  .section_cp_apply_bnr {
    width: 90%;
    margin-top: 3vw;
  }
}
.section_cp .bnr_block {
  margin-top: min(60px,6vw);
  margin-inline: auto;
  width: min(500px, 70vw);
}
@media screen and (max-width: 800px) {
  .section_cp .bnr_block {
    width: 100%;
  }
}

/*===============================================================

	section_renewal

===============================================================*/
.section_renewal {
  margin-top: min(120px,12vw);
  /*---------------------------------------------------------------
  	section_renewal_point
  ---------------------------------------------------------------*/
}
.section_renewal_inner {
  position: relative;
}
.section_renewal_flag {
  position: absolute;
  top: max(-20px,-2vw);
  left: min(30px,3vw);
  width: min(80px,8vw);
  z-index: 1;
}
.section_renewal_kv {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.section_renewal_body {
  position: relative;
  padding: min(50px,5vw) min(60px,6vw);
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.section_renewal_deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.section_renewal_deco img {
  width: min(180px,16vw);
}
.section_renewal_headline {
  text-align: center;
}
.section_renewal_title {
  margin-top: min(5px,.5vw);
  font-size: min(30px,3vw);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #E93817;
}
.section_renewal_lead {
  font-size: min(22px,2.2vw);
  font-weight: bold;
  color: #E93817;
}
.section_renewal_text {
  text-align: center;
  font-size: min(16px,1.6vw);
  font-weight: bold;
  line-height: 2;
  margin-top: min(20px,2vw);
}
.section_renewal_btn {
  margin-top: min(60px,6vw);
  width: min(400px,40vw);
  margin-inline: auto;
  text-align: center;
}
.section_renewal_btn_note {
  font-size: min(12px,1.2vw);
  margin-top: min(10px,1vw);
}
.section_renewal_point {
  margin-top: min(50px,5vw);
}
.section_renewal_point_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
.section_renewal_point_item + .section_renewal_point_item {
  margin-top: min(40px,4vw);
}
.section_renewal_point_img {
  width: 50%;
  background: #E93817;
  line-height: 0;
}
.section_renewal_point_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  background: #FFDFD9;
  padding: 0 min(50px,5vw);
  padding-bottom: min(30px,1.5vw);
}
.section_renewal_point_label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(90px,9vw);
  height: min(35px,3.5vw);
  font-size: min(14px,1.4vw);
  font-weight: bold;
  color: #fff;
  background: #E93817;
  border-radius: 3px;
}
.section_renewal_point_label_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: min(5px,.5vw);
  padding-bottom: min(1px,.1vw);
  width: min(18px,1.8vw);
  height: min(18px,1.8vw);
  font-size: min(12px,1.2vw);
  font-weight: bold;
  color: #E93817;
  background: #fff;
  border-radius: 50%;
}
.section_renewal_point_title {
  margin-top: min(15px,1.5vw);
  font-size: min(22px,2.2vw);
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  .section_renewal {
    margin-top: 10vw;
    padding: 0 5vw;
  }
  .section_renewal_flag {
    top: -3vw;
    left: 3vw;
    width: 12vw;
  }
  .section_renewal_body {
    padding: 5vw;
    border-radius: 0 0 1vw 1vw;
    overflow: hidden;
  }
  .section_renewal_deco {
    width: 120%;
    margin-left: -10%;
  }
  .section_renewal_deco img {
    width: 20vw;
  }
  .section_renewal_lead {
    font-size: 4vw;
    letter-spacing: 0.05em;
  }
  .section_renewal_title {
    margin-top: 1.5vw;
    font-size: 5vw;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .section_renewal_text {
    width: 80%;
    font-size: 3.4vw;
    margin-inline: auto;
    margin-top: 2.5vw;
  }
  .section_renewal_point {
    margin-top: 5vw;
  }
  .section_renewal_point_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 1vw;
  }
  .section_renewal_point_item + .section_renewal_point_item {
    margin-top: 5vw;
  }
  .section_renewal_point_img {
    width: 100%;
  }
  .section_renewal_point_txt {
    width: 100%;
    padding: 5vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .section_renewal_point_label {
    width: 18vw;
    height: 7vw;
    font-size: 3vw;
  }
  .section_renewal_point_label_num {
    margin-left: 1vw;
    padding-bottom: 0;
    width: 4vw;
    height: 4vw;
    font-size: 2.6vw;
  }
  .section_renewal_point_title {
    margin-top: 1.5vw;
    font-size: 4vw;
    line-height: 1.8;
  }
  .section_renewal_btn {
    margin-top: 6vw;
    width: 90%;
  }
  .section_renewal_btn_note {
    font-size: 3vw;
    margin-top: 2vw;
  }
}

/*===============================================================

	section_app

===============================================================*/
.section_app {
  margin-top: min(25px,2.5vw);
}
.section_app_inner {
  border-radius: 10px;
  overflow: hidden;
}
.section_app_header {
  position: relative;
  padding: min(40px,4vw);
  background: #fff;
  text-align: center;
}
.section_app_icon {
  position: absolute;
  top: 50%;
  left: min(40px,4vw);
  width: min(60px,6vw);
  height: min(60px,6vw);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 30px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 30px;
}
.section_app_title {
  font-size: min(30px,3vw);
  color: #E93817;
}
.section_app_lead {
  font-size: min(16px,1.6vw);
  font-weight: bold;
  color: #E93817;
  margin-top: min(12px,1.2vw);
}
.section_app_body {
  padding: min(40px,4vw);
  background: #ddd;
}
.section_app_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_app_os {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: min(13px,1.3vw);
  border-radius: 5px;
}
.section_app_os:not(:first-child) {
  margin-left: min(30px,3vw);
}
.section_app_link {
  display: block;
  margin: 0 min(17px,1.7vw);
  width: min(220px,22vw);
  line-height: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.section_app_qr {
  width: min(90px,9vw);
  height: min(90px,9vw);
  line-height: 0;
}
.section_app_btn {
  margin-top: min(30px,3vw);
  width: min(400px,40vw);
  margin-inline: auto;
}
@media (hover) {
  .section_app_link:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 800px) {
  .section_app {
    margin-top: 7vw;
    padding: 0 5vw;
  }
  .section_app_inner {
    border-radius: 1vw;
    overflow: initial;
  }
  .section_app_header {
    padding: 6vw 5vw 5.5vw;
    border-radius: 1vw 1vw 0 0;
  }
  .section_app_icon {
    top: -3vw;
    left: 3vw;
    width: 11vw;
    height: 11vw;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    border-radius: 1vw;
  }
  .section_app_title {
    font-size: 5vw;
  }
  .section_app_lead {
    font-size: 3.4vw;
    margin-top: 1.5vw;
  }
  .section_app_body {
    padding: 6vw;
    border-radius: 0 0 1vw 1vw;
  }
  .section_app_os {
    width: 70%;
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .section_app_link {
    margin: 0;
    width: 100%;
  }
  .section_app_qr {
    display: none;
  }
  .section_app_btn {
    margin-top: 5vw;
    width: 90%;
  }
}
/*# sourceMappingURL=style.css.map */