@charset "utf-8";


/*-iOSリセット-----------------------------------------------------------*/

input[type="button"],input[type="text"],input[type="password"],input[type="submit"] {
   -webkit-appearance: none;
   border-radius: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 0;
}

button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}


/*--共通-----------------------------------------------------------*/

body{
	font-size:13px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin:0;
	padding:0;
	background:#DDD;
}


textarea{
	font-size:13px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}



/*--導線-----------------------------------------------------------*/

.connect_copy{
    padding: 10px 10px 50px 10px;
}

.connect_subtitle{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 5px;
}

.connect_section{
    padding-bottom: 50px;
}

.coennect_btn{
    display: block;
    color: #FFF;
    font-weight: bold;
    background: #ff3333;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    padding: 20px 10px;
    margin: 10px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    background-image: url(../images/btn_arrow.png);
    background-repeat: no-repeat;
    background-position: right 5px center;
}

.coennect_btn_b{
    display: block;
    color: #FFF;
    background: #666;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    width: 180px;
    padding: 15px 10px;
    margin: 10px auto;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    background-image: url(../images/btn_arrow.png);
    background-repeat: no-repeat;
    background-position: right 5px center;
}


.connect_section_copy{
    padding: 10px;
}

.connect_section_form{
    padding:10px;
}

.connect_section_form dl{
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
}

.connect_section_form dl dt{
    width: 100px;
    text-align: right;
    margin:0;
    padding: 0 10px 0 0;
    font-weight: bold;
    line-height: 120%;
}

.connect_section_form dl dd{
    margin: 0;
    padding: 0;
    flex-grow: 2
}

.connect_section_form dl dd input{
    border: solid 1px #CCC;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}


.connect_entry_form dl{
    margin: 0 0 5px 0;
}

.connect_entry_form dl dt{
    width:100%;
    margin:0;
    padding: 10px;
    font-weight: bold;
    background: #333;
    color: #FFF;
    box-sizing: border-box;
}

.connect_entry_form dl dd{
    margin: 0;
    padding: 10px 10px 30px 10px;
    display: flex;
}

.connect_entry_form dl dd input[type="text"],.connect_entry_form dl dd input[type="password"], .connect_entry_form dl dd select{
    border: solid 1px #CCC;
    background: #FFF;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.connect_entry_form dl dd input[type="text"]:focus,.connect_entry_form dl dd input[type="password"]:focus, .connect_entry_form dl dd select:focus{
    border: solid 1px #ff3333;
}


.connect_entry_form_input100{
    width: 100%;
}

.connect_entry_form_input50{
    width: 50%;
}

.connect_entry_form_input33{
    width: 33%;
}


.radio_input{
    display: none;
}
.radio_input + label{
    margin-top: 10px;
    padding-left: 30px;
    position:relative;
    margin-right: 30px;
    font-size: 16px;
    line-height: 26px;
    color: #999;
}
.radio_input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #CCC;
  border-radius: 50%;
background: #FFF;
}
.radio_input:checked + label{
  color: #ff3333;
    font-weight: bold;
}
.radio_input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #ff3333;
  border-radius: 50%;
}



/*--コンテンツ-----------------------------------------------------------*/

#contents_A{
    display: block;
}

#contents_B{
    display: none;
}

#contents_tab{
    background: #FF3333;
}

#contents_tab ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
}

#contents_tab ul li{
    flex-grow: 1;
    margin: 1px;
    width: 50%;
}

#contents_tab ul li a{
    display: block;
    color: #FFF;
    padding: 10px;
    text-align: center;
    color:#FFF;
    font-weight: bold;
}

#contents_tab ul li a.contents_tab_active{
    background: #FFF;
    color:  #FF3333;
}

#contents_member_st{
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
}

#contents_member_st #ontents_member_st_l dl{
    margin: 10px 0;
    padding: 0;
    display: flex;
    align-items:center;
}

#contents_member_st #ontents_member_st_l dl dt{
    color: #999999;
    font-size: 12px;
    text-align: right;
    /*width: 40px;*/
    padding: 0 10px 0 0;
    
}

#contents_member_st #ontents_member_st_l dl dd{
    margin: 0;
    font-size: 16px;
}

#contents_member_st #ontents_member_st_r a{
    display: block;
}

#contents_member_st #ontents_member_st_r .coennect_btn, #contents_member_st #ontents_member_st_r .coennect_btn_b{
    margin: 0;
    font-size: 12px;
    padding: 10px;
    width: 100px;
    text-align: left;
    margin-bottom: 5px;
    background-size: 5%;
}

#contents_barcode{
    margin-top: 20px;
    background: #333;
    padding: 10px;
}

#contents_barcode_inner{
    background: #FFF;
    padding: 20px;
    text-align: center;
}

#contents_barcode_inner img{
    display: block;
    width: 100%;
    height: 100px;
}

.contents_pt{
    background: #FFF;
}

.contents_pt dl{
    margin: 0;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.contents_pt dl dt{
    font-size: 16px;
}

.contents_pt dl dd{
    font-size: 24px;
    color: #FF3333;
    font-weight: bold;
}

#contents_pthis_title{
    background: #666;
    color: #FFF;
    padding: 20px 0 10px 0;
    text-align: center;
}

.contents_pthis_box{
    display: grid;
    padding: 10px;
    border-bottom:solid 1px #CCC;
}

.contents_pthis_flag{
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    color: #999;
}

.contents_pthis_name{
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    font-size: 18px;
}

.contents_pthis_pt{
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    text-align: right;
    align-self:end;
    font-size: 20px;
}

.pt_tani{
    font-size: 12px !important;
}

#pt_exchange_img img{
    display: block;
    width: 100%;
    height: auto;
}
