@charset "UTF-8";

html {
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
}
body {
    color: #000000;
    font-family: noto-sans-cjk-jp, "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 0;
}
html.no_scroll{
    overflow: hidden;
}
/*****ヘッダー*****/
header {
    display: block;
    width: 100vw;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}
/*marginなしの場合*/
header .nomargin {
    margin-bottom: 0px !important;
}
header .titlewrapper {
    margin: 0 auto;
    margin-bottom: 30px;
}
header .titlewrapper .top-title h2 {
    background-color: #EEFE3C;
    color: #666666;
    font-family: din-2014, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 0 12px 15px;
}
header .titlewrapper .top-title .menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1200;
}
header .titlewrapper .top-title .menu span:nth-of-type(1) {
    transform: translateY(-5px);
}
header .titlewrapper .top-title .menu span:nth-of-type(3) {
    transform: translateY(5px);
}
header .titlewrapper .top-title .menu span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background-color: #666666;
    float: left;
    transform-origin: center center;
    transition: transform 250ms ease;
    z-index: 200;
}
header .titlewrapper .top-title #menu &:checked ~ .menu {
    background-color: transparent;
    transform: rotate(360deg);
    transition: transform 0.5s ease;
    span {
        transition: transform 0.5s ease;
        &:nth-of-type(1) {
            transform: translateY(1px) rotate(45deg);
        }
        &:nth-of-type(2) {
            display: none;
        }
        &:nth-of-type(3) {
            transform: translateY(-1px) rotate(-45deg);
        }
    }
}
header .titlewrapper .sub-title h3 {
    background-color: #F6F6F6;
    font-size: 18px;
    padding: 18px 0 18px 15px;
    font-weight: 500;
}
/*****ハンバーガーメニュー******/
.hamburger {
	position: fixed;
	top: 0;
	right: 0;
	background:transparent;
	cursor: pointer;
	width: 50px;
	height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.hamburger .openbtn-area {
	transition: all .6s;/*アニメーションの設定*/
	width:50px;
	height:50px;
}

.hamburger span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 15px;
	height: 2px;
	border-radius: 2px;
	background: #666666;
	width: 20px;
}

.hamburger__line--1 {
	top: 17px;
}

.hamburger__line--2 {
	top: 24px;
}

.hamburger__line--3 {
	top: 31px;
}

/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.nav-open .hamburger .openbtn-area {
	transform: rotate(360deg);
}

.nav-open .hamburger span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.nav-open .hamburger span:nth-of-type(2) {
	opacity: 0;
}

.nav-open .hamburger span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

/*****グローバルナビー******/
.nav-open .menu_nav {
	right: 0;
    z-index: 1;
}
.menu_nav {
	position: fixed;
	background: #fff;
	width: 100%;
	height: calc(100vh - 50px);
	top: 50px;
	right: -110%;
	transition: 0.5s;
}
.menu_foot {
	font-size: 11px;
	line-height: 16px;
	font-weight: 500;
	padding: 12px 0;
	font-family: Roboto, sans-serif;
	color: #BFBFBF;
	text-align: center;
}
.menu_list {
	height: calc(100vh - 90px);
	overflow-y: scroll;
}
.menu_list a {
	text-decoration: none;
	color: #000000;
	position: relative;
	display: block;
}
.menu_list__main a {
	border-bottom: 1px solid #E6E6E6;
	padding: 21px 35px 21px 16px;
	font-size: 15px;
	line-height: 22px;
}
.menu_list__main a:after {
	content: "";
	position: absolute;
	display: inline-block;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	right: 15px;
	width: 10px;
	height: 5px;
	background-repeat: no-repeat;
	background-image: url(../media/images/arrow_down_icon.svg);
	background-size: contain;
	-webkit-background-size: contain;
	pointer-events: none;
	transform: rotate(-90deg);
}
.menu_list__sub {
	margin-top: 12px;
}
.menu_list__sub a {
	font-size: 13px;
	line-height: 19px;
	padding: 7px 16px;
	color: #4A4A4A;
	font-weight: 400;

}
/*ログアウトボタンのみ例外的にaタグではなくbuttonタグにする*/
.menu_list__sub li button.logout {
    border: none;
    background-color: transparent;
    font-size: 13px;
	line-height: 19px;
	padding: 7px 16px;
	color: #4A4A4A;
	font-weight: 400;
    text-align: left;
    width: 100%;
}
/*-------------------------------------------------*/

/*****メインコンテンツ*****/
/*main .inner_600 {
    min-height: calc(100vh - 200px);
}*/
.inner_600 {
    max-width: 600px;
    padding: 0 38px;
    margin: 0 auto;
    width: calc(100% - 76px);
}

/*説明*/
.inner_600 .description p {
    text-align: center;
    font-size: 15px;
    margin-bottom: 16px;
}

/*フォーム*/
.inner_600 .form .form-group {
    margin-bottom: 16px;
}
.inner_600 .form .form-group label, input, select, p {
    display: block;
    width: 100%;
}
input[type="checkbox"] {
    width: 15px;
    height: 15px !important;
    border: 1px solid #BFBFBF;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}
input[type="checkbox"]:checked {
    background-color: #666666;
    border: 1px solid #666666 !important;
}
input[type="checkbox"]:checked:before {
    position: absolute;
    top: 2px;
    left: 5px;
    transform: rotate(50deg);
    width: 3px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: '';
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.inner_600 .form .form-group label {
    font-size: 13px;
    color: #4A4A4A;
    /*margin-bottom: 2px;*/
}
.inner_600 .form .form-group ul {
    list-style: none;
}
.inner_600 .form label.control-label span {
    text-align: center;
    display: inline-block;
    margin-right: 5px;
    width: 30px;
    height: 17px;
    background-color: #C70000;
    color: #ffffff;
    font-size: 10px;
    line-height: 1.7;
}
.inner_600 .no-edit label.control-label {
    font-size: 13px;
    color: #7C7C7C;
    font-weight: 400;
}
.inner_600 .no-edit span {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}
.inner_600 .no-edit span.no-data {
    color: #aaa;
}
.inner_600 .form label.editable {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #4A4A4A;
}
.inner_600 .form label.editable span {
    width: 47px;
    background-color: transparent;
    font-size: 11px;
    line-height: 1.7;
    color: #C70000;
    margin-right: 0px;
}
.inner_600 .form label.editable span::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-image: url(../media/images/edit_icon.svg);
    background-size: contain;
    -webkit-background-size: contain;

}
.inner_600 .form .form-group input,select {
    padding: 0;
    height: 50px;
    border: 1px solid #BFBFBF;
    border-radius: 5px;
    padding-left: 11px;
    padding-top: 3px;
    box-sizing: border-box;
    /*margin-bottom: 2px;*/
}
/*パスワード入力フォーム*/
.inner_600 .login-form .form-group {
    margin-bottom: 14px;
}
.inner_600 .form .form-group .password-form {
    padding: 0;
    height: 50px;
    border: 1px solid #BFBFBF;
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
}
.inner_600 .form .form-group .password-form input {
    margin-bottom: 0;
    height: 100%;
    padding-left: 11px;
    border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/*-----------------------*/

/*フォームエラー時スタイル*/
.inner_600 form .form-group input.error,
.inner_600 form .form-group select.error {
    background-color: #FFEFEF;
    border: 1px #C70000 solid !important;
    color: #C70000;
}
/**********************/

.inner_600 .form .form-group .select-wrap {
    position: relative;
}
.inner_600 .form .column_3 .select-wrap select {
    height: 45px;
}
.inner_600 .form .select-wrap select.select {
    color: #7C7C7C;
}
.inner_600 .form .form-group select {
    &::-ms-expand {
        display: none;
    }
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; /* デフォルトの矢印を非表示 */
    position: relative;
}
.inner_600 .form .form-group select option[value=""] {
    color: #7C7C7C;
}
.inner_600 .form .form-group select:invalid {
    color: #7C7C7C;
}
.inner_600 .form .form-group select option {
    color: #000000;
}
.inner_600 .form .form-group select::-ms-expand {
    display: none; /* デフォルトの矢印を非表示(IE用) */
}
.inner_600 .form .column_2 label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.inner_600 .form .column_2 div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inner_600 .form .column_2 .controls input {
    width: 49%;
}
.inner_600 .form .column_3 .controls {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.inner_600 .form .column_3 .select-wrap {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 31%;
}
.inner_600 .form .column_3 .select-wrap span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    margin-right: 10px;
    font-size: 12px;
}

  /* セレクトボックスの矢印デザイン変更 */
.inner_600 .form .form-group .select-wrap::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 55%;
    transform: translateY(-50%) translateX(-50%);
    right: 9px;
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-image: url(../media/images/arrow_down_icon.svg);
    background-size: contain;
    -webkit-background-size: contain;
    pointer-events: none;
}
.inner_600 .form .column_3 .select-wrap::after {
    right: 30px;
}
.inner_600 .form .form-group, .btn p.attention {
    font-size: 11px;
    color: #7C7C7C;
}

/*ボタン*/
.inner_600 .btn {
    margin-top: 50px;
}
.inner_600 .btn button:disabled {
    background-color: #BFBFBF;
}
.inner_600 .btn a,  .inner_600 .btn button{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: none;
    background-color: #666666;
    border-radius: 28px;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold;
    width: 260px;
    height: 55px;
    color: #ffffff;
    text-decoration: none;
}
.inner_600 .btn a::before,
.inner_600 .btn button::before{
    content: "";
    position: absolute;
    display: inline-block;
    right: 16px;
    width: 7px;
    height: 12px;
    background-repeat: no-repeat;
    background-image: url(../media/images/arrow_icon.svg);
    background-size: contain;
    -webkit-background-size: contain;
}
/*アイコンなしボタン*/
.inner_600 .btn .noicon::before {
    display: none;
}

/*編集ボタン*/
.inner_600 .edit-btn {
    margin-top: 15px;
    margin-bottom: 65px;
}
.inner_600 .edit-btn button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid #666666;
    background-color: #FFFFFF;
    border-radius: 28px;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold;
    width: 260px;
    height: 55px;
    color: #666666;
    text-decoration: none;
    box-sizing: border-box;
}
.inner_600 .edit-btn button::before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 16px;
    width: 7px;
    height: 12px;
    background-repeat: no-repeat;
    background-image: url(../media/images/arrow_back_icon.svg);
    background-size: contain;
    -webkit-background-size: contain;
}
/*.inner_600 .edit-btn button:hover {
    opacity: 0.7;
    transition: 0.3s;
}*/

.inner_600 .btn-last {
    margin-bottom: 65px;
}

/*****フッター*****/
footer {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    color: #BFBFBF;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    bottom: 0;
}
footer .foot .inner_600 div p {
    padding: 13px 0;
    text-align: center;
}

@media screen and (max-width:320px) {
    .inner_600 .btn a,
    .inner_600 .btn button {
        width: 100%;
    }
}

/*登録ステータス*/
main .status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 270px;
    margin: 0 auto;
    margin-bottom: 70px;
}
main .status div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 72px;
}
main .status div span {
    font-weight: 500;
    font-size: 12px;
    margin-top: 4px;
}
main .status div span.greytext {
    color: #9F9F9F;
}
main .status div div {
    font-family: Roboto, sans-serif;
    font-size: 17px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
main .status div div.first::after,
main .status div div.second::after {
    content: "";
    border-radius: 0;
    display: block;
    width: 50px;
    height: 1.5px;
    background-color: #BFBFBF;
    position: absolute;
}
main .status div div.secondstatus::after,
main .status div div.thirdstatus::after {
    border-radius: 0;
    display: block;
    width: 50px;
    height: 1.5px;
    border-bottom: 2px dotted #666666;
    background-color: transparent;
}
main .status div div.first::after,
main .status div div.second::after {
    margin-left: 100px;
}
main .status div div.yellow {
    background-color: #EEFE3C;
    color: #000000;
}
main .status div div.grey {
    background-color: #BFBFBF;
    color: #FFFFFF;
}


/*****各ページスタイル調整*****/
/***ログイン画面 login***/
/*メインタイトル*/
.blind_icon_open {
    filter: brightness(0);
}
.main_title {
    padding: 59px 0 27px 0;;
    text-align: center;
}
.main_title h1 {
    font-family: din-2014, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 23px;
}

/*****メインコンテンツ*****/
main {
    padding-bottom: 50px; /*footerのheight分、mainの要素と重ならないようにする*/
}
.inner_600 .login {
    margin-top: 40px;
}
.inner_600 .form .form-group .password-form img {
    position: absolute;
    right: 9px;
    top: 30%;
}

/*ログインボタン*/
.inner_600 .login-form .login-btn button {
    background-color: #EEFE3C;
    color: #000000;
}
.inner_600 .login-form .login-btn + p.attention a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    text-align: center;
    font-size: 11px;
    color: #7C7C7C;
    text-decoration: none;
}
/*******/

/***会員情報登録 会員コード入力画面 registaration***/
/*****メインコンテンツ*****/
main .code-section {
    min-height: calc(100vh - 230px);
}
.inner_600 .code {
    margin-top: 70px;
    margin-bottom: 40px;
}
.code-section .form .form-group input,select {
    border: 1px solid #666666;
}
/*******/


/***会員情報登録 会員コードエラー画面 registaration_error***/
.inner_600 .caution {
    margin-top: 64px;
    margin-bottom: 40px;
}
.inner_600 .caution {
    color: #C70000;
}
.inner_600 .caution .title {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner_600 .caution .title img{
    margin-right: 5px;
}
.inner_600 .caution p {
    font-size: 13px;
    line-height: 21px;
}

/***会員情報登録画面 registration_input***/
.inner_600 .status img {
    padding-bottom: 30px;
    object-fit: contain;
    width: 270px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-right: 12px;
}
@media screen and (max-width:320px) {
    .inner_600 .status img {
        width: 100%;
        height: auto;
    }
}
main .input-status {
    margin-bottom: 45px;
}
/*****メインコンテンツ*****/
main .apply-section {
    margin-top: 22px;
    padding: 0 15px;
    /*margin: 0 auto;*/
    width: calc(100% - 30px);
    min-height: 0;
}
.inner_600 .apply-form .form-group input,select {
    border-radius: 3px;
    border: 1px solid #BFBFBF;
}
.error-msg {
    display: none;
}
.inner_600 .apply-form .form-group input.error + .error-msg,
.inner_600 .apply-form .form-group select.error + .error-msg {
    display: block;
}
.inner_600 .apply-form .form-group label {
    margin-bottom: 2px;
}
.inner_600 .form .form-group .checkbox-column ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.inner_600 .form .form-group .checkbox-column ul li span {
    font-size: 14px;
    line-height: 18px;
}
.inner_600 .form .privacy {
    margin: 50px 15px 0px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 7px 14px 11px 14px;
    max-height: 200px;
    overflow-y: scroll;
    box-sizing: border-box;
}
.inner_600 .privacy div {
    margin-bottom: 20px;
}
.inner_600 .form .privacy div {
    margin-bottom: 8px;
}
.inner_600 .privacy div a {
    font-size: 100%;
}
.inner_600 .privacy h4 {
    font-size: 13px;
    font-weight: 500;
}
.inner_600 .privacy h5 {
    font-size: 12px;
    font-weight: 500;
}
.inner_600 .privacy p {
    font-size: 12px;
    color: #7C7C7C;
    line-height: 22px;
}
.inner_600 .form .checkarea label {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.inner_600 .form .checkarea label .agree {
    margin-right: 5px;
    width: 20px;
    height: 20px !important;
    border-radius: 3px;
    accent-color: #666666;
}
.inner_600 .form .checkarea label .agree:checked::before {
    top: 3px;
    left: 7px;
    width: 4px;
    height: 8px;
}
.inner_600 .form .checkarea label span {
    font-size: 13px;
    color: #7C7C7C;;
}
.email-error {
    display: none;
    color: #C70000;
    line-height: 14px;
}
input[type="email"]:focus {
    outline: none;
    border: 1px solid #C70000;
}
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance:textfield !important;
}
/*ボタン*/
.inner_600 .check-btn {
    margin-top: 30px;
    margin-bottom: 65px;
}
/*@media screen and (max-width:360px) {
    .inner_600 .form .column_2 div.postcode a {
        font-size: 8px;
    }
}*/
/*******/


/***登録内容確認画面 registration_confirm***/
main .check-status {
    margin-bottom: 30px;
}
main .confirm-section {
    /*margin-top: 4px;*/
    padding: 0 15px;
    width: calc(100% - 30px);
    min-height: 0;
}
main .confirm-section .confirm {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    /*margin-top: 5px;*/
}
main .confirm-section .confirm .form-group {
    border-bottom: 1px #D5D5D5 solid;
}
main .confirm-section .confirm .form-group {
    padding: 8px 10px 14px 15px;
    margin-bottom: 0;
}
main .confirm-section .confirm .column_2 div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
main .confirm-section .confirm .form-group label {
    font-size: 13px;
    color: #7C7C7C;
}
main .confirm-section .confirm .form-group .controls {
    font-size: 15px;
    color: #000000;
}
main .confirm-section .confirm .form-group .controls span {
    margin-right: 14px;
}
main .confirm-section .confirm .column_3 .controls span:first-child,
main .confirm-section .confirm .column_3 .controls span:nth-child(2),
main .confirm-section .confirm .form-group .controls span.pref {
    margin-right: 0;
}
@media screen and (min-width:730px) {
    main .confirm-section .confirm {
        margin: 0 auto;
        width: 100%;
        max-width: 730px;
    }
}
/*******/


/***会員情報登録完了（メールあり）画面 email_check***/
.inner_600 .apply-complete {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /*margin-top: 40px;*/
}
.inner_600 .apply-complete p.first {
    margin-top: 50px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
.inner_600 .apply-complete p {
    margin-top: 18px;
    font-size: 14px;
}
@media screen and (max-width:320px) {
    .inner_600 .apply-complete img {
        width: 100%;
    }
}
/*******/

/*****マイページ mypage*****/

.text_center {
	text-align: center;
}
.inner_600.padding_30 {
	padding: 0 30px;
	width: calc(100% - 60px);
}
.inner_230 {
	max-width: 230px;
	margin: 0 auto;
}
.output_name {
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	margin-bottom: 25px;
}
.output_name span {
	font-size: 25px;
	line-height: 30px;
	font-weight: 500;
	margin-right: 5px;
}
.point .small_text {
	font-size: 11px;
	line-height: 17px;
	margin-bottom: 14px;
}
.point .point_num {
	font-size: 18px;
	margin-bottom: 6px;
	font-weight: 500;
	line-height: 27px;
}
.point .point_num span {
	font-size: 50px;
	font-weight: 500;
	margin-right: 5px;
}
.limit_time {
	font-size: 12px;
	line-height: 19px;
	font-weight: 400;
	border-radius: 30px;
	background-color: #EEFE3C;
	color: #666666;
	padding: 4px 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.bar_code {
	margin: 35px 0 0;
}
.code_img img {
	width: 100%;
	vertical-align: top;
	height: auto;
}
.code_num {
	margin: 8px 0 38px!important;
	font-weight: 400;
	font-size: 14px!important;
}
.code_num span {
	font-weight: 500;
	font-size: 17px;
	line-height: 25px;
}


.border_top {
	border-top: 1px solid #E6E6E6;
}
.pet_list {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	list-style: none;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.pet_list::after {
    content: "";
    display: block;
	width: calc(50% - 8px);
}
.pet_list__item {
	width: calc(50% - 8px);
    margin-bottom: 16px;
    display: grid;
}
@media screen and (min-width: 540px) {
    .pet_list::after {
        width: calc(33% - 8px);
    }
    .pet_list__item {
        width: calc(33% - 8px);
    }
}
.pet_list__item a {
	padding: 16px 16px 14px;
	display: block;
	text-align: center;
	border-radius: 4px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
	text-decoration: none;
	color: #000000;
}
.img_circle {
	border-radius: 100px;
	width: 68px;
	height: 68px;
	margin: 0 auto 4px;
	overflow: hidden;
}
.img_circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pet_name {
	font-size: 13px;
}
.pet_name span {
	font-size: 16px;
	line-height: 18px;

}
.pet_male:after {
	content: "くん";
}
.pet_female:after {
	content: "ちゃん";
}
.pet_age {
	font-size: 12px;
	line-height: 16px;
	color: #9F9F9F;
	margin-top: -2px;
}
.h4_title {
	font-weight: 500;
	line-height: 20px;
	font-size: 14px;
	margin: 9px 0 20px;
}

/******会員情報表示画面 mypage/detail.html*****/
.inner_600 .usercode {
    margin-top: 14px;
}
.inner_600 .usercode p {
    margin-bottom: 0px;
}
.inner_600 .detail_code_num {
    font-size: 14px !important;
    color: #7C7C7C;
    font-weight: 400;
}
.inner_600 .detail_code_num span {
    font-weight: 500;
    font-size: 17px;
    color: #000000;
}


/*****ペット情報一覧画面 mypage/pet/index******/
.inner_600 .top25 {
    margin-top: 25px;
}
.inner_600 .img-circle {
    border-radius: 100px;
    width: 68px;
    height: 68px;
    margin: 0 auto 4px;
    overflow: hidden;
}
.pet-section .notregister {
    text-align: center;
}
.pet-section .notregister {
    margin-top: 78px;
}


/*****ペット情報登録画面 mypage/pet/add******/
.inner_600 .caution-text p {
    font-size: 13px;
    font-weight: 500;
    color: #C70000;
}
.inner_600 .img-circle100 {
    border-radius: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 4px;
    overflow: hidden;
}
.min-width {
	min-width: 167px;
}
.controls.min-width {
	width: 31%;
}
.inner_600 .form .column_3 .controls.min-width span {
	margin-left: 5px;
    margin-right: 10px;
    font-size: 12px;
}

.control-label {
	font-size: 13px;
    color: #4A4A4A;
    margin-bottom: 2px;
}

.btn_yellow {
	padding: 6px 14px;
	font-size: 12px;
	line-height: 18px;
	color: #666666;
	text-decoration: none;
	background: #EEFE3C;
}
.btn_yellow.radius {
    border-radius: 15px;
}
@media screen and (max-width:350px) {
    .btn_yellow.radius {
        font-size: 10px;
    }
}
.size_sample__title {
	background: #EEFE3C;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	padding: 8px 16px;
	width: calc(100% - 32px);
}
.size_sample__main {
	background: #F6F6F6;
	padding: 10px 12px 15px;
}
.size_sample__main p {
	color: #000;
	font-size: 13px;
	line-height: 20px;
}
.size_sample__main img {
	margin: 25px 0 30px;
	vertical-align: top;
	max-width: 100%;
}
.white_inner {
	padding: 10px 14px;
	background: #ffffff;
    border-radius: 5px;
}
.white_inner p {
	font-size: 13px;
	line-height: 20px;
	color: #000;
	margin-bottom: 2px;
}
.white_inner p:last-child {
	margin-bottom: 0;
}
.white_inner p span {
	font-weight: 500;
	color: #666666;
	margin-right: 10px;
}
.white_inner p span.num {
	margin-right: 8px;
	font-size: 12px;
	font-family: Roboto, sans-serif;
	position: relative;
	z-index: 1;
}
.white_inner p span.num:before {
	content: "";
	position: absolute;
	background: #EEFE3C;
	border-radius: 20px;
	width: 15px;
	height: 15px;
	left: -4px;
	top: 0;
	z-index: -1;
}
.inner_600 .img-circle100.img_select {
	position: relative;
	overflow: initial;
	cursor: pointer;
}
.img_select:before {
	content: "＋";
	font-size: 17px;
	line-height: 25px;
	font-weight: 900;
	color: #666666;
	background: #EEFE3C;
	position: absolute;
	z-index: 100;
	bottom: 6px;
    right: -7px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.inner_600 .img-circle100.img_select img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100px;
}
.inner_600 .caution-text p {
	line-height: 20px;
}
.edit__upload-file {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
#js-img-preview {
    position: absolute;
    top: 0;
    aspect-ratio: auto 1 / 1;
}
.no-data {
    color: #aaa;
}
/*****ペット情報変更画面 mypage/pet/edit******/
/*.inner_600 .form .edit-able {
    color: #C70000 !important;
    font-size: 11px !important;
    background-color: transparent !important;
    width: 47px !important;
}*/

/*****ペット情報登録完了画面 mypage/pet/complete******/
.inner_600 .apply-complete p.greybold a {
    margin-top: 16px;
    font-size: 14px;
    font-weight: bold;
    color: #9F9F9F;
    text-decoration: none;
}
.inner_600 .pet {
    padding-top: 100px;
}


/*****購入・利用履歴 transaction/index******/
.buying-section {
    padding: 0 15px;
    margin: 0 auto;
    width: calc(100% - 30px);
}
.inner_600 .buyinglist .list__item {
    border-radius: 5px;
    border: 1px solid #CCCCCC;
    margin-bottom: 15px;
}
.inner_600 .buyinglist .list__item .bgyellow {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #EEFE3C;
    padding: 2px 2px 2px 10px;
}
.inner_600 .buyinglist .list__item .bggrey {
    background-color: #F6F6F6;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.inner_600 .buyinglist .list__item .bggrey .bggrey__item {
    position: relative;
    padding: 11px 15px ;
    border-bottom: 0.5px solid #CCCCCC;
}
.inner_600 .buyinglist .list__item .bggrey .bggrey__item + .amount {
    border-bottom: none;
}
.inner_600 .buyinglist .r14 {
    font-size: 14px;
    color: #000000;
}
.inner_600 .buyinglist .list__item p {
    line-height: 21px;
}
.inner_600 .buyinglist .list__item .m15 {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}
.inner_600 .buyinglist .list__item .m14 {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}
.inner_600 .buyinglist .list__item .m13 {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}
.inner_600 .buyinglist .list__item .m12 {
    font-size: 12px;
    font-weight: 500;
    color: #7C7C7C;
}
.inner_600 .buyinglist .list__item .m12 + .black{
    color: #000000;
}
.inner_600 .buyinglist .list__item .amount p {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}
.inner_600 .buyinglist .list__item .amount .m12 {
    margin-right: 10px;
}

.inner_600 .form .center {
    text-align: center;
    margin-top: 13px;
}
.inner_600 .form .center a {
    font-size: 12px;
    font-weight: 500;
    color: #9F9F9F;
    text-decoration: none;
}
.inner_600 .buyinglist .list__item {
	margin-top: 6px;
}
.inner_600 .buyinglist .list__item .bgyellow {
	padding: 5px 10px;
}
.inner_600 .buyinglist .list__item .m13 {
	width: 52px;
    display: inline-block;
}
.inner_600 .buyinglist .list__item .m15 {
	margin-bottom: 5px;
}
.bgyellow .m12 {
	margin-right: 2px;
}
.inner_600 .buyinglist .list__item .m14 .m12 {
	margin: 0 8px 0 2px;
}
.inner_600 .buyinglist .list__item .bggrey .bggrey__item + .amount {
	text-align: right;
}
.flex_text {
	display: flex;
    align-items: center;
    justify-content: left;
}


/*****パスワード再設定_メール送信画面 password_complete******/
/*フォーム*/
.inner_600 .pass-complete {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.inner_600 .pass-complete p.first {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 23.6px;
    margin-bottom: 50px;
    width: 100vw;
}
.inner_600 .pass-complete p.bottom40 {
    margin-bottom: 40px;
}
@media screen and (max-width:320px) {
    .inner_600 .pass-complete img {
        width: 100%;
    }
}

/*****パスワード再設定_3.パスワード再設定_パスコード入力画面 reset-password******/
/*フォーム*/
.inner_600 .reset-form .form-group div .black {
    border: 1px solid #666666;
}