@charset "UTF-8";
/* default */
body{
    font-size: 1.6rem;
    line-height: 1.7em;
    color: #333;
}
input, textarea, select{
    color: #333;
}
textarea{
    resize: none;
}
::placeholder,
.placeholder {
    color: #b6b6b6;
}
input::-ms-reveal {
    visibility:hidden
}
p.css_guide{
    font-size: 1.2rem;
    color: #aaa;
    text-shadow: 1px 1px 1px #000;
    margin-left: 20px;
}
.mgt-xxl {
    margin-top: 60px !important;
}
.mgl-s{
    margin-left: 10px;
}
.bg_green{
    background-color: #009F00;
}
.col_w{
    color: #fff;
}
.fit{
    width: 100%;
    height: auto;
}
.hide{
    display: none !important;
}
.hidden{
    visibility: hidden;
}
/* font */
.fnt-s-25{
    font-size: 2.5rem;
}
.fnt-s-30{
    font-size: 3.0rem;
}
.fnt-w-b{
    font-weight: bold;
}
.line-narrow{
    line-height: 1.5em;
}
.strikethrough{
    position: relative;
    padding-bottom: 20px;
}
.strikethrough::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -10px;
    background: linear-gradient(45deg, rgba(0,0,0,0), rgba(0,0,0,0) 49.8%, #CECDCD 49.8%, #CECDCD 50.3%, rgba(0,0,0,0) 50.3%, rgba(0,0,0,0));
}
/* header */
.header{
    background-color: #009F00;
    padding: 15px;
    position: relative;
}
.header_title{
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
}
.header_arrow{
    position: absolute;
    line-height: 0;
}
.header_arrow::before,
.header_arrow::after{
    content: "";
    position: absolute;
    display: block;
}
.header_arrow::before{
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.header_arrow.prev::after{
    left: 11px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-left: 3px solid #009F00;
    border-bottom: 3px solid #009F00;
    transform: rotate(45deg);
}
.header_below{
    background-color: #009F00;
    color: #000;
    padding: 10px;
    position: relative;
    font-size: 1.4rem;
}
.header_below .id{
    flex-shrink: 0;
}
.header_below .name{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header_below a + .name{
    padding-left: 35px;
}
/* section */
.contents{
}
.contents > .inner:nth-child(odd){
    background-color: #fff;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px; 
}
.contents > .inner:first-child{
    border-top-left-radius: 0;
    padding-top: 30px;
}
.contents > .inner:last-child{
    border-bottom-right-radius: 0; 
}
.inner{
    padding: 40px 15px;
    position: relative;
}
div.inner{
    padding: 15px;
}
.section_title{
    font-size: 1.8rem;
    color: #009F00;
}
.attention{
    color: #f00;
}
.aside{
    font-size: 1.4rem;
    margin-top: 10px;
    line-height: 1.5em;
}
.indent{
    padding-left: 1em;
    text-indent: -1em;
}
.attention.board{
    padding: 10px;
    background-color: #fff;
    border: solid 2px #f00;
    margin-top: 30px;
}
/* form asset */
.form_asset + .form_asset,
.column + .column{
    margin-top: 20px;
}
.form_asset .title{
    font-weight: bold;
}
.form_asset .input{
    margin-top: 10px;
    position: relative;
}
.form_asset .input.narrow{
    padding: 0 20%;
}
.form_asset > .input input.text,
.form_asset > .input textarea.text,
.form_asset .input[data-input="select"] > select{
    background-color: #fff;
    border: solid 2px #bbb;
    border-radius: 10px;
    width: 100%;
    padding: 5px 15px;
    color: #333;
}
.form_asset > .input textarea.text + .placeholder{
    position: absolute;
    top: 2px;
    left: 2px;
    padding: 5px 15px;
    pointer-events: none;
    display: none;
}
.form_asset > .input textarea.text + .placeholder.show{
    display: block;
}
.form_asset .input[data-input="iframe"]{
    border: solid 1px #707070;
    line-height: 0;
}
.form_asset .input input[type="date"]{
    padding: 5px 5px;
    width: 100%;
    min-height: 43px;
}
.form_asset .input input[type="date"]::-webkit-inner-spin-button,
.form_asset .input input[type="date"]::-webkit-clear-button,
.form_asset .input input[type="date"]::-webkit-calendar-picker-indicator{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}

.form_asset .input input[type="date"]::-webkit-calendar-picker-indicator{
    position: absolute;
    width: 100%;
    left: 0;
}
.form_asset .input[data-input="date"]::after{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/icon_calender.svg) 95% center/ 25px 25px no-repeat;
    pointer-events: none;
}
.date_separater{
    align-self: flex-end;
    padding: 0 10px 10px;
}
/* error */
.error_area{
    border: solid 2px #f00;
    padding: 10px;
    width: calc(100% - 30px);
    margin: 20px auto 0px;
}
.form_asset[data-error="true"]{
    color: #f00;
}
.form_asset[data-error="true"] > .input input.text,
.form_asset[data-error="true"] > .input textarea.text,
.form_asset[data-error="true"] .input[data-input="select"] > select{
    border-color: #f00;
    color: #f00;
}
.form_asset[data-error="true"] .input[data-input="select"]::after{
    border-color: #f00 transparent transparent transparent;
}
.error_asset{
    color: #f00;
}
.error_asset > .title{
    font-weight: bold;
}
.error_asset > .description{
    font-size: 1.4rem;
}
.column + .error{
    color: #f00;
}
/* selectbox */
.form_asset .input[data-input="select"],
.pos_relative{
    position: relative;
}
.form_asset .input[data-input="select"]::after{
    content: "";
    position: absolute;
    display: block;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    border-color: #009F00 transparent transparent transparent;
    right: 15px;
    top: calc(50% - 4px);
    pointer-events: none;
}

/* checkbox + radio */
.input[data-input] + .input[data-input]{
    margin-top: 25px;
}
.input[data-input] > label{
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    line-height: 1.4em;
    margin-bottom: 10px;
    -webkit-user-select: none;
	user-select: none;
}

.input[data-input] .button,
.switch .button{
    display: block;
    background-color: #fff;
    border: solid 2px #bbb;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    flex-grow: 0;
    flex-shrink: 0;
}
/* checkbox */
.input[data-input="checkbox"] .button{
    border-radius: 10px;
}
.input[data-input="checkbox"] input:checked + .button{
    background-color: #009F00;
    border-color: #009F00;
}
.input[data-input="checkbox"] .button::after{
    content: "";
    display: block;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    width: 7px;
    height: 15px;
    transform: rotate(45deg);
    position: relative;
    left: 8px;
    top: 1px;
}

/* radio */
.input[data-input="radio"] .button{
    border-radius: 50%;
}

.input[data-input="radio"] input:checked + .button::after{
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-color: #009F00;
    border-radius: 50%;
    position: relative;
    left: 4px;
    top: 4px;
}
.input[data-input="radio"] input:checked + .button.red::after{
    background-color: #E93B70;
}

/* password */
.input[data-input="password"]{
    position: relative;
}
.input[data-input="password"] > .pass_toggle{
    position: absolute;
    display: flex;
    place-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    top: 0;
    right: 0;
}
.input[data-input="password"] > .pass_toggle.selected::after{
    content: "／";
    display: block;
    position: absolute;
    color: #707070;
    text-shadow: 0 0 #fff;
}

/* switch */
.input[data-input="switch"] > label.unclickable{
    pointer-events: none;
}
.input[data-input="switch"] > label{
    flex-direction: row;
    justify-content: flex-start;
}
.setting_area{
    width: 100%;
}
.setting_area .input[data-input="switch"] > label > .label{
    width: calc(100% - 60px);
}
.input[data-input="switch"] .toggle > .button{
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    left: 0;
    transition: left 0.2s;
}
.input[data-input="switch"] input:checked + .toggle > .button{
    background-color: #009F00;
    border-color: #009F00;
    left: 25px;
}
.input[data-input="switch"] .toggle{
    position: relative;
    margin-left: 5px;
    width: 55px;
}
.input[data-input="switch"] .toggle::after{
    content: "";
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 17px;
    background-color: #CECDCD;
    border-radius: 10px;
    left: 5px;
    top: 4px;
    z-index: 0;
}
.input[data-input="switch"] input:checked + .toggle::after{
    background-color: #C4E07A;
}
.input[data-input="checkbox"] input:disabled + .button{
    background-color: #ddd;
}
.input[data-input="checkbox"] input:disabled + .button::after{
    opacity: 0;
}
/* disabled form */
.form_asset.disabled > .input input.text,
.disabled .form_asset > .input input.text,
.disabled .form_asset > .input textarea,
.disabled .form_asset .input[data-input="select"] > select,
.form_asset.disabled .input[data-input="select"] > select,
.disabled .input[data-input] .button,
.disabled .switch .button{
    background-color: #eee;
    color: #999;
    pointer-events: none;
}
.disabled .input[data-input] > label{
    pointer-events: none;
}
.disabled .form_asset .input[data-input="select"]::after{
    border-color: #bbb transparent transparent transparent;
}
.disabled .default,
.default:disabled{
    color: #999;
    background-color: #eee;
    border-color: #bbb;
    pointer-events: none;
}
.disabled .default .icon > img,
.default:disabled .icon > img{
    filter: saturate(0) brightness(1.5);
}
.form_asset.disabled .input[data-input="select"]::after{
    border-color: #999 transparent transparent transparent;
}
.disabled .input[data-input="radio"] input:checked + .button::after{
    background-color: #999;
}
/* button */
.submit {
    width: 100%;
    padding: 8px 10px;
    color: #FFF;
    background-color: #00A6ED;
    border-radius: 30px;
    font-size: 1.8rem;
    font-weight: bold;
    min-width: 80px;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}
.input[data-input="toggle_button"]{
    /* position: absolute; */
}
.input[data-input="toggle_button"] .toggle_button,
.default{
    width: 100%;
    padding: 8px 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #009F00;
    background-color: #fff;
    border: solid 3px #009F00;
    border-radius: 30px;
    line-height: 1.3em;
    min-width: 80px;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}
.input[data-input="toggle_button"] .toggle_button{
    background-color: #F4F8CF;
    white-space: normal;
    text-align: center;
    font-size: 1.4rem;
    padding: 5px 3px;
    cursor: pointer;
}
.input[data-input="toggle_button"] input:checked + .toggle_button{
    color: #fff;
    background-color: #009F00;
}
.input[data-input="toggle_button"] .toggle_button.check{
    padding: 10px 0;
}
.input[data-input="toggle_button"] input:checked + .toggle_button.check::after{
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    right: 10px;
    top: 3px;
    background: url(../images/icon_check_y.svg) center center / 32px 32px no-repeat;
}
.erase{
    width: 100%;
    padding: 8px 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: #949292;
    border: solid 3px #949292;
    border-radius: 30px;
    line-height: 1.3em;
    min-width: 80px;
    white-space: nowrap;
}
.default > img,
.erase > img{
    display: inline-block;
    margin-top: -4px;
}
.submit:disabled,
.submit.disabled{
    background-color: #bbb;
    pointer-events: none;
}
button.arrow{
    position: relative;
}
.label_text{
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
    width: 80%;
}
button.arrow::after{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: calc(50% - 6px);
}
/* required + optional */
.required::after{
    content: "必須";
    display: inline-block;
    font-size: 1.2rem;
    color: #fff;
    background-color: #f00;
    padding: 0 8px;
    line-height: 1.4em;
    border-radius: 3px;
    margin-left: 5px;
    position: relative;
    top: -1px;
}
.optional::after{
    content: "任意";
    display: inline-block;
    font-size: 1.2rem;
    color: #fff;
    background-color: #A19E9E;
    padding: 0 8px;
    line-height: 1.4em;
    border-radius: 3px;
    margin-left: 5px;
    position: relative;
    top: -1px;
}
.default > .icon,
.default > .label,
.submit > .icon,
.submit > .label,
.menu_item > .icon,
.menu_item > .label{
    display: inline-block;
}
.default > .icon + .label,
.submit > .icon + .label,
.default > .label + .icon,
.submit > .label + .icon,
.menu_item > .icon,
.menu_item > .label{
    margin-left: 10px;
}
.float,
.default > .icon.float,
.submit > .icon.float{
    position: absolute;
}
/* flex */
.column{
    display: flex;
}
.column.space_around{
    justify-content: space-around;
}
.column.align_center{
    align-items: center;
}
.column.space_between{
    justify-content: space-between;
}
.column.vertical{
    flex-direction: column;
}
.column.flex_wrap{
    flex-wrap: wrap;
}
.column > .child{
    flex: 1;
}
.column > .large{
    flex-grow: 1;
}
.column > .small{
    flex-grow: 0.8;
}
.column > .ex_small{
    flex-grow: 0.5;
}
.column > .ex_small + .large,
.column > .small + .large,
.column > .large + .large,
.column > .large + .ex_small,
.column > .heading + .ex_small,
.column > .large + div{
    margin-left: 10px;
}
.column > .no_shrink{
    flex-shrink: 0;
}
.column > .child + .child,
.column > .input + .input{
    margin-left: 10px;
}
.column > .form_asset + .form_asset{
    margin-top: 0px;
}
.column > .input[data-input] + .input[data-input]{
    margin-top: 10px;
    margin-left: 10px;
}
.form_asset .column .input[data-input="select"] > select{
    padding: 5px;
}
.form_asset .column .input[data-input="select"]::after{
    right: 7px;
}
.column .w60,
.w60{
    width: 60%;
}
.w100px{
    width: 100px;
}
/* tab_button */
/*
.tab_selector > div.inner{
    padding-bottom: 0;
}
*/
.tab_button{
    margin: 20px 10px 0;
}

.tab_button .child{
    border: solid 1px #949292;
    background-color: #EAF3D1;
    padding: 10px;
    border-radius: 15px 15px 0 0;
    margin: 0 0 -1px;
}
.tab_button .child.selected{
    border-color: #009F00;
    background-color: #009F00;
    color: #fff;
}
.tab_area > [data-tab-role="area"]{
    display: none;
}
.tab_area > .selected[data-tab-role="area"]{
    display: block;
}
/* page_link_ribbon */
.page_link_ribbon{
    margin-bottom: 5px;
}
.page_link_ribbon .ribbon_area{
    border-top: solid 6px #009F00;
    border-bottom: solid 1px #009F00;
    background-color: #F4F3F3;
    padding: 5px 0;
    flex: 1;
    text-align: center;
    position: relative;
}
.page_link_ribbon .ribbon_area::after{
    content: "";
    display: block;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #009F00 transparent transparent transparent;
    position: absolute;
    bottom: -5px;
    left: calc(50% - 4px);
}
.page_link_ribbon .ribbon_button{
    display: block;
    text-decoration: none;
    color: #009F00;
    line-height: 1.2em;
}
.page_link_ribbon .ribbon_button .seq{
    font-size: 1.8rem;
    font-weight: bold;
    opacity: 0.34;
}
.page_link_ribbon .ribbon_button .label{
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
}

/* information */
.info_title{
    color: #009F00;
    font-weight: bold;
}
.info_title .seq{
    font-size: 2.4rem;
    margin-right: 5px;
    opacity: 0.4;
}
.info_title .label{
    font-size: 1.8rem;
}

/* camera_asset */
.camera_asset{
    margin-top: 20px;
}
.camera_asset > .preview{
    border: solid 4px #CECDCD;
    background-color: #F0F0F0;
    text-align: center;
    padding: 0;
}
.camera_asset > .preview > img{
    width: 100%;
    height: auto;
}
.camera_asset > .preview.empty{
    padding: 20px 0;
}
.camera_asset > .preview.empty > img{
    width: auto;
}
.camera_asset > .preview + .column{
    margin-top: 15px;
}
.camera_asset input[type="file"]{
    display: none;
}
.input[data-input="file"] > label{
    text-align: center;
}

/* message_asset */
.message_asset{
    display: flex;
    justify-content: center;
}
.message_asset > .balloon{
    width: 198px;
    height: 118px;
    background: url(../images/img_balloon.svg) no-repeat;
    display: grid;
    place-items: center;
}
.message_asset > .balloon > .message{
    text-align: center;
    font-weight: bold;
    line-height: 1.4em;
}
.message_asset > .cat{
    margin-top: 60px;
}

/* message_asset_balloon */
.message_asset_balloon{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.message_asset_balloon > .balloon{
    border: solid 2px #b6b6b6;
    padding: 10px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    width: 100%;
    position: relative;
}
.message_asset_balloon > .balloon::before{
    content: '';
    position: absolute;
    display: block;
    z-index: 1;
    border-style: solid;
    border-color: #FFF transparent;
    border-width: 25px 25px 0 0;
    bottom: -21px;
    left: 75%;
    margin-left: -11px;
}
.message_asset_balloon > .balloon::after{
    content: '';
    position: absolute;
    display: block;
    z-index: 0;
    border-style: solid;
    border-color: #b6b6b6 transparent;
    border-width: 25px 25px 0 0;
    bottom: -26px;
    left: 75%;
    margin-left: -14px;
}
.message_asset_balloon > .balloon > .message{
    font-weight: bold;
    line-height: 1.4em;
}
.message_asset_balloon > .cat{
    margin-top: 10px;
}

/* confirmation */
.confirmation + .confirmation{
    margin-top: 70px;
}
.heading{
    font-size: 1.8rem;
    font-weight: bold;
    color: #009F00;
    position: relative;
    vertical-align: text-top;
}
.sub_heading{
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 5px;
}
.heading.checked::before{
    content: "";
    display: inline-block;
    position: relative;
    top: 4px;
    margin-right: 5px;
    width: 24px;
    height: 20px;
    background: url(../images/icon_check.svg) center center no-repeat;
}
.heading + .confirm_asset{
    margin: 10px 0;
}
.no_border > .heading{
    font-size: 1.6rem;
}
.confirm_asset{
    width: 100%;
    border-collapse: separate;
    border-spacing: 3px;
}
.confirm_asset .title{
    font-weight: bold;
    font-size: 1.4rem;
    white-space: nowrap;
    border-bottom: dashed 2px rgba(192, 140, 140, 0.8);
    padding: 10px 10px 3px;
    vertical-align: baseline;
    line-height: 1.4em;
}
.confirm_asset .title.name {
    white-space: normal;
}
.confirm_asset .title:not([colspan]),
.confirm_asset .description:first-child {
    width: 46%;
    padding: 10px 10px 3px;
    white-space: normal !important;
    word-break: break-all;

}
.confirm_asset .title.name + .description {
    white-space: nowrap;
}
.confirm_asset .no_border{
    padding-bottom: 0;
    border-bottom: none;
}
.confirm_asset .description{
    width: 54%;
    border-bottom: dashed 2px rgba(192, 140, 140, 0.8);
    padding: 10px 0 3px;
    line-height: 1.4em;
    word-break : break-all;
    overflow-wrap : break-word;

}
.confirm_asset .camera_asset{
    padding: 10px 0 20px;
}
.text_block{
    margin-top: 20px;
    padding: 15px 10px;
    background-color: #fff;
    border: solid 1px #949292;
    border-radius: 15px;
    font-size: 1.2rem;
}
.text_block > .text_content{
    overflow-y: scroll;
    height: 50vh;
}
.section_header > .section_header_label > .help,
.heading > .help,
.section_inner_description > .help,
.form_asset .title > .help{
    display: inline-block;
    margin-left: 5px;
    vertical-align: text-bottom;
}
.section_inner_description{
    white-space: nowrap;
}
/* main header */
.section_header{
    background-color: #fff;
}
.section_header > .section_header_label{
    font-size: 2.0rem;
    text-align: center;
    font-weight: bold;
}

/* section wrapper + innner */
.section_wrapper > .section_inner_title{
    margin: -40px -15px 0;
}
.section_inner_title > .section_inner_label{
    background-color: #BDDC69;
    font-weight: bold;
    padding: 10px;
}
.section_inner_title > .form_asset{
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 10px;
    margin-top: 10px;
}
.section_inner_title + .confirmation{
    margin-top: 25px;
}
.section_wrapper + .section_wrapper{
    margin-top: 100px;
}
.section_inner_wrapper{
    margin-top: 20px;
}
.section_inner_wrapper + .section_inner_wrapper{
    margin-top: 40px;
}
/* popup */
.popup_wrapper{
    position: fixed;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}
.popup_wrapper.show{
    visibility: visible;
    height: 100%;
    opacity: 1.0;
}
.popup_wrapper > .popup{
    background-color: #fff;
    margin: 30px 15px;
    padding: 40px 15px 20px;
    border: solid 1px #707070;
    border-radius: 20px;
    position: relative;
    height: calc(100% - 60px);
}
.popup_wrapper > .popup.menu{
    margin: 0 auto;
    padding: 20px 15px;
    width: calc(100vw - 30px);
    height: auto;
    top: 100%;
    transition: top 0.3s;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.popup_wrapper > .popup.dialog{
    height: auto;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    padding-bottom: 40px;
}
.popup_wrapper.show > .popup.menu{
    top: calc(100% - 185px);
}
.popup_wrapper.new.show > .popup.menu{
    top: calc(100% - 137px);
}
.popup_wrapper > .popup[data-popup-type="menu"]{
    margin: 0 5px;
}
.popup_wrapper > .popup > .popup_inner{
    max-height: 100%;
    margin: 0 auto;
    overflow-y: auto;
    display: none;
}

.popup_wrapper > .popup > .popup_inner .fixed_bottom{
    position: absolute;
    bottom: 0;
    width: calc(100% - 30px);
    padding: 20px 0;
    background-color: #fff;
}
.popup_wrapper > .popup.dialog > .popup_inner .fixed_bottom{
    position: relative;
    margin: 0 auto;
    padding: 0;
}
.popup_wrapper > .popup > .popup_inner .fixed_top{
    position: absolute;
    top: 39px;
    width: calc(100% - 30px);
    padding: 0 0 15px;
    background-color: #fff;
    z-index: 2;
}

.popup_wrapper > .popup > .popup_inner .fixed_under{
    padding-top: 70px;
    z-index: 1;
}
.popup_wrapper > .popup > .popup_inner .popup_title{
    font-size: 1.6rem;
}
.popup_wrapper > .popup.menu > .popup_inner{
    max-width: none;
}
.popup_wrapper > .popup > .popup_inner.show{
    display: block;
}
.popup_wrapper > .popup a[data-input-control="popup_close"]{
    position: absolute;
    display: block;
    background-color: #fff;
    width: 54px;
    height: 54px;
    top: -15px;
    right: -10px;
    border-radius: 50%;
}
.popup .close {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #00A6ED;
    position: relative;
    border-radius: 50%;
    left: 7px;
    top: 7px;
}
.popup .close::before, .close::after{
    content: "";
    display: block;
    width: 55%;/*バツ線の長さ*/
    height: 4px;/*バツ線の太さ*/
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 10px;
    top: 18px;
}
.popup .close::after{
    transform: rotate(-45deg);
}
.info_table{
    font-size: 1.3rem;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border-right: solid 1px #707070;
    border-bottom: solid 1px #707070;
}
.info_table th,
.info_table td{
    border: solid 1px #707070;
    padding: 5px 10px;
    line-height: 1.4em;
    border-right: none;
    border-bottom: none;
}
.info_table th{
    text-align: center;
    font-weight: normal;
}
.info_table thead th{
    background-color: rgba(148, 199, 1, 0.5);
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: bold;
}
.popup .border_description{
    margin-top: 10px;
    font-size: 1.2rem;
}
.popup .border_description + .border{
    margin-top: 0;
}
.popup .border{
    margin-top: 10px;
    padding: 10px;
    border: solid 2px #CECDCD;
}
.popup .border > img{
    width: 100%;
    height: auto;
}
.thumb_list > .img > img{
    width: 100%;
    height: auto;
}
.thumb_list > .text{
    font-size: 1.4rem;
    line-height: 1.4em;
    text-align: center;
}
.sml_br{
    display: none;
}
.disabled > .menu_item{
    pointer-events: none;
}
.disabled > .menu_item > span{
    opacity: 0.0;
}
/* category_list */
.popup .category_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
    row-gap: 5px;
}
.popup .category_list .form_asset{
    margin-top: 0;
}
.popup .category_list .input[data-input="toggle_button"] .toggle_button{
    display: grid;
    align-items: center;
    min-height: 53px;
}
.popup .category_list .input[data-input="toggle_button"]{
    height: 100%;
    margin-top: 0;
}
.popup .category_list .input[data-input="toggle_button"] > label{
    margin-bottom: 0;
    height: 100%;
}
.popup .category_list .input[data-input="toggle_button"] input[type="checkbox"]{
    position: absolute;
}
.under_border.fixed_top{
    border-bottom: solid 1px #999;
}
.under_border + .under_border{
    border-top: solid 1px #999;
    margin-top: 25px;
}
/* お問い合わせ */
.inqury_block{
    background-color: #009F00;
    color: #fff;
    padding: 10px 10px 0;
    position: relative;
}
.inqury_block .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.inqury_block .icon_image{
    transform: translateY(-15px);
}
.inqury_block .reverse_border{
    color: #009F00;
    background-color: #fff;
    display: inline-block;
    padding: 0 5px;
    border-radius: 15px;
    line-height: 1.8em;
}
.vertical_list > li:nth-child(n + 2){
    margin-top: 15px;
}

/* pager */
.pager{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.pager a,
.pager a:visited{
    color: #009F00;
}

/* pict */
.pict_item{
    margin-top: 30px;
}
.input > .pict_item{
    margin-top: 0;
}
.pict_item .pict_asset .pict{
    position: relative;
    background-color: #F5F5F7;
    line-height: 0;
}
.pict_item .pict_asset .pict::before,
.pict_item .pict_asset .pict::after{
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
}
.pict_item .pict_asset .pict::after{
    top: 0;
    height: 100%;
    border: dashed 3px #A19E9E;
    z-index: 2;
}
.pict_item .pict_asset .pict::before{
    bottom: 0;
    height: 40px;
    border-top-left-radius: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}
.pict_item .pict_asset .pict > img{
    width: 100%;
    height: auto;
}
.pict_item .pict_asset + .form_assets{
    margin-top: 30px;
    padding: 0 50px;
}
.pict_list > .pict_item:last-child .form_assets{
    display: none;
}
/* footer_menu */
.footer_menu .menu_item{
    display: block;
    color: #333333;
    padding: 10px 0;
    border-bottom: solid 1px #B6B6B6;
}

/* Coupon */
.coupon_item{
    width: 100%;
    position: relative;
}
.coupon_item .coupon_item_inner{
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    width: 100%;
}
.coupon_item.new
.coupon_item.new > a,
.coupon_item.new > a:link,
.coupon_item.new > a:active,
.coupon_item.new > a:visited{
    color: #707070;
    text-decoration: none;
}
.coupon_item.new::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: dashed 3px #A19E9E;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    pointer-events: none;
    z-index: 3;
}
.coupon_item.new .coupon_upper .head{
    font-size: 1.8rem;
    background-color: #EEEEEE;
    padding: 20px 5px;
    line-height: 1.3em;
}
.coupon_item .coupon_upper{
    position: relative;
    z-index: 2;
}
.coupon_item .coupon_upper .head{
    width: 32%;
    overflow: hidden;
    position: relative;
}
.coupon_item .coupon_upper .head > img,
.coupon_item .coupon_upper .head > video{
    width: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
    top: 0;
    left: -50%;
    transform: translateX(50%);
}
.coupon_item .coupon_upper .head.strikethrough.no_image {
    background-color: #eee;
    padding-bottom: 0;
}
.coupon_item .coupon_upper .head.strikethrough.no_image > img{
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: 50%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.coupon_item .coupon_upper .head.strikethrough.no_image::after {
    width: 100%;
    height: 100%;
    max-width: calc( 50% + 10px );
    max-height: calc( 50% + 10px );
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


.coupon_item.new .coupon_upper .content{
    background-color: #fff;
}
.coupon_item .content{
    font-size: 1.2rem;
    line-height: 1.6em;
}
.coupon_item .coupon_upper .content{
    width: 68%;
    padding: 0 10px 10px;
    position: relative;
}
.coupon_item .coupon_upper .content::after{
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: -3px;
    border-right: dotted 6px #fff;
}
.coupon_item .content > .label,
.coupon_item .coupon_upper .content .label{
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 1em;
}
.coupon_item .content > .date,
.coupon_item .coupon_upper .content .date{
    font-size: 1.1rem;
    margin-top: 1em;
}
.coupon_item .content > .price{
    font-size: 1.4rem;
}
.coupon_item .content .strike{
    text-decoration: line-through;
    display: block;
    padding-right: 1em;
}
.coupon_item .content .sale{
    font-size: 2.0rem;
    color: #D23806;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
.coupon_item .coupon_lower{
    background-color: #ECECEC;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}
.coupon_item .coupon_lower::before{
    content: "";
    display: block;
    position: absolute;
    /* background-color: #ECECEC; */
    height: 40px;
    width: 100%;
    top: -40px;
}
.coupon_item .coupon_lower .head,
.coupon_item .coupon_lower .content{
    padding: 10px 20px;
}
.coupon_item .coupon_lower .submit{
    font-size: 1.4rem;
}
.coupon_list > .coupon_item{
    margin-top: 30px;
}
.coupon_item .archive_status,
.d_item .archive_status{
    display: block;
    text-align: center;
    border: solid 1px #949292;
    border-radius: 5px;
    padding: 0 10px;
    white-space: nowrap;
}
.coupon_item .pict_item .pict_asset > img{
    z-index: 3;
    left: -8px;
    top: -8px;
}
/* status */
.status_wrapper{
    position: relative;
    margin-top: 10px;
}
.status_wrapper > .archive_status{
    width: 100%;
}
/* 選択したクーポンでの背景色 */
.coupon_item .coupon_upper .content{
    background-color: #F4E2D6;
}
/* イメージ一覧 */
.popup_inner .image_list{
    width: 100%;
    --height: 33%;
    padding-bottom: 64px;
}
.popup.dialog .popup_inner .image_list{
    padding-bottom: 8px;
}
.popup_inner .image_list > .item{
    width: 33%;
    height: var(--height);
    overflow: hidden;
    border: solid 1px #fff;
}
.popup_inner .image_list > .item > .item_label{
    display: block;
    position: relative;
    height: 100%;
}
.popup_inner .image_list > .item > .item_label > .radio{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}
.popup_inner .image_list > .item > .item_label > .thumbnail{

}
.popup_inner .image_list > .item > .item_label > .thumbnail > img,
.popup_inner .image_list > .item > .item_label > .thumbnail > video{
    width: 100%;
    height: var(--height);
    display: block;
    object-fit: cover;
    transition: transform 0.3s;
    position: relative;
}
.popup_inner .image_list > .item > .item_label > .radio:checked + .thumbnail > img,
.popup_inner .image_list > .item > .item_label > .radio:checked + .thumbnail > video{
    transform: scale(1.2);
}
.popup_inner .image_list > .item > .item_label > .radio:checked + .thumbnail::before,
.popup_inner .image_list > .item > .item_label > .radio:checked + .thumbnail::after{
    content: "";
    position: absolute;
    display: block;
}
.popup_inner .image_list > .item > .item_label > .radio:checked + .thumbnail::after{
    width: 24px;
    height: 24px;
    padding: 4px;
    background: #fff url(../images/icon_check.svg) center center no-repeat;
    top: 5px;
    left: 5px;
    border-radius: 50%;
}
.popup_inner .image_list > .item > .item_label > .thumbnail[data-input="video"] > .play::after{
    content: "";
    position: absolute;
    display: block;
    border: 12px solid transparent;
    border-left: 20px solid #fff;
    top: calc(50% - 12px);
    left: calc(50% - 8px);
}
.popup_inner .image_list > .item > .item_label > .thumbnail[data-input="video"] > .play{
    position: absolute;
    display: block;
    background: #6EB416;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    transition: opacity 0.3s;
}
.popup_inner .image_list > .item > .item_label > .radio:checked + .thumbnail[data-input="video"] > .play{
    opacity: 0.0;
}
.people .shop_header .descriptions + .coupon_lower{
    background-color: #D65D48;
    position: relative;
}
.people .shop_header .descriptions + .coupon_lower > .form_asset{
    padding: 20px 40px;
}
.people .shop_header .descriptions + .coupon_lower::before{
    content: "";
    display: block;
    width: 100%;
    border-top: dotted 10px #fff;
    top: -5px;
    position: absolute;
    z-index: 3;
}

/* みんなのジモッチャ */

/* Carousel */
.people .shop_header{
    position: relative;
}
.people .shop_header .images .swiper-slide img{
    width: 100%;
    height: auto;
}
.people .shop_header .descriptions{
    padding: 25px 25px 15px;
    border-top-left-radius: 40px;
    background-color: #FCEFDE;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.people .heart_button{
    display: grid;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: #fff;
    justify-items: center;
    align-items: center;
}
.people .heart_button::before{
    content: "";
    display: block;
    position: absolute;
    width: 37px;
    height: 37px;
    border: solid 1px #E83960;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}
.people .float_wrapper{
    position: absolute;
    z-index: 3;
}
.people .float_wrapper[data-float-position="rt"]{
    top: 20px;
    right: 20px;
}
.people .float_wrapper[data-float-position="center_narrow"]{
    width: 100%;
    padding: 0 75px;
    margin-top: -60px;
}
.people .categorized_title{
    display: flex;
}
.people .categorized_title > .label{
    /* font-weight: bold; */
    font-size: 2.0rem;
    margin-left: 10px;
    line-height: 1.4em;
    word-wrap: break-word;
    width: calc(100% - 70px);
}
.people .categorized_title > .label > .catch_copy{
    font-size: 1.2rem;
    margin-top: 5px;
    word-wrap: break-word;
    line-height: 1.4em;
    width: 100%;
    display: block;
}
.people .circle_button{
    display: block;
    width: 45px;
    height: 45px;
    display: grid;
    border-radius: 50%;
    justify-items: center;
    align-items: center;
}
.people .circle_button.white{
    background-color: #fff;
    border: solid 1px #ccc;
}
.people .circle_button.black{
    background-color: #333;
}
.people .circle_button.overlaid_gray{
    position: relative;
    z-index: 1;
    opacity: 0.3;
}
.people .circle_button.overlaid_gray::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 100%;
    z-index: 2;
    background-color: rgba(0,0,0,0.5);
}

.people .link_list{
    display: flex;
    justify-content: space-between;
}
.people .link_list > .item{
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}
.people .link_list > .item:nth-child(3){
    margin-right: 10px;
}
.people .page_link_ribbon .ribbon_area{
    border-top: none;
    border-bottom: solid 2px #CECDCD;
    background-color: #fff;
    padding: 20px 0;
    display: grid;
    justify-content: center;
    align-items: center;
}
.people .page_link_ribbon .ribbon_area.current{
    border-bottom: solid 4px #F08E24;
    padding-bottom: 16px;
}
.page_link_ribbon .ribbon_area::after{
    content: none;
}
.people .page_link_ribbon .ribbon_area .ribbon_button{
    color: rgba(51, 51, 51, 0.6);
    line-height: 1.1em;
}
.people .page_link_ribbon .ribbon_area.current .ribbon_button{
    color: #333;
}
.people .page_link_ribbon .ribbon_button .label{
    font-size: 1.4rem;
}
.people .description_table{
    width: 100%;
}
[data-input="iframe"] .map{
    height: 200px;
}
.people .description_table .title,
.people .description_table .content{
    vertical-align: top;
    border-bottom: solid 1px #B2B2B2;
    padding: 15px 0;
    word-wrap: break-word;
    word-break: break-all;
}
.people .description_table .no_border .title,
.people .description_table .no_border .content{
    border-bottom: none;
}
.people .description_table .no_border .title[colspan="2"]{
    padding-bottom: 0;
}
.people .description_table .no_border .content[colspan="2"]{
    padding-top: 0;
}
.people .description_table .title{
    white-space: nowrap;
    padding-right: 20px;
}
.people .description_table a,
.people .description_table a:hover,
.people .description_table a:visited,
.people .description_table a:link,
.people .description_table a:active{
    color: #333;
}
.people .description_table .content.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 0;
    vertical-align: middle;
}
.people .page_link_ribbon + .contents > .inner:first-child{
    padding-top: 10px;
}

/* 角丸セット */
.popup_inner .d_list{
    padding: 20px 3px 0;
}

.d_list,
.d_list > .d_item_wrapper{
    position: relative;
}
.d_list > .d_item_wrapper:nth-child(n + 2){
    margin-top: 60px;
}
.d_list .d_item{
    font-size: 1.6rem;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    position: relative;
}
.d_list .d_item.new::after{
    content: "";
    display: block;
    position: absolute;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border: dashed 3px #A19E9E;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    pointer-events: none;
    top: 0;
    z-index: 2;
}
.d_list .d_item a,
.d_list .d_item a:active,
.d_list .d_item a:visited,
.d_list .d_item a:link,
.d_list .d_item a:hover{
    color: #333;
    text-decoration:  none;
}
.d_list .d_item .upper_item{
    position: relative;
    background-color: #EEEEEE;
    text-align: center;
    font-size: 2.2rem;
    z-index: 1;
}
.d_list .d_item.new .upper_item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.d_list .d_item .upper_item.minimum{
    min-height:200px;
}
.d_list .d_item .lower_item{
    position: relative;
    background-color: #fff;
    padding: 20px 25px;
    z-index: 2;
}
.d_list .d_item .upper_item + .lower_item{
    margin-top: -40px;
    border-top-left-radius: 40px;
}
.popup_inner .d_list .d_item{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.popup_inner .d_list .d_item .upper_item + .lower_item{
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
}
.popup_inner .d_list .d_item .lower_item{
    border: solid 1px #707070;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.d_list .d_item .upper_item .image > img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.d_list .d_item .upper_item .image.no_image {
    height: 160px;
}
.d_list .d_item .upper_item .image.no_image > img {
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: 100px;
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.d_list .d_item .upper_item.minimum .image.no_image > img{
    top: 50%;
}
.d_list .d_item .upper_item .image.no_image.strikethrough::after{
    max-width: calc( 50% + 20px );
    max-height: 120px;
    top: calc(50% - 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.d_list .d_item .upper_item.minimum .image.no_image.strikethrough::after{
    top: 50%;
}
.d_item .content .label{
    font-weight: bold;
    margin-top: 1em;}
.d_item .content > dt,
.d_item .content  > dd{
    word-break : break-all;
    overflow-wrap : break-word;

}
.d_item .form_asset .label{
    font-size: 1.6rem;
}
.d_item .archive_status{
    display: inline-block;
    margin: 0;
}
.d_item .upper_item > .archive_status{
    position: absolute;
    left: 20px;
    top: 20px;
}
.d_item [data-input-control="text_shorten"] > a{
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 1em;
}
.d_list.column .d_item,
.d_list.column .d_item::after{
    border-bottom-left-radius: 0;
}
.d_list.column .d_item .upper_item{
    font-size: 1.6rem;
}
.d_list.column .d_item .lower_item{
    padding: 10px 20px;
    min-height: 125px;
}
.d_list.column{
    flex-wrap: wrap;
    justify-content: space-between;
}
.d_list.column > .d_item_wrapper{
    width: 49%;
}
.d_list.column .d_item .content .label{
    margin-top: 0;
    min-height: 3.4em;
}
.d_list.column > .d_item_wrapper:nth-child(2){
    margin-top: 0px;
}
.d_list.column > .d_item_wrapper:nth-child(n + 3){
    margin-top: 30px;
}
.d_list.column .d_item .archive_status{
    position: absolute;
    top: -20px;
    left: 10px;
    z-index: 4;
}
.ribon{
    font-size: 1.2rem;
    display: inline-block;
    padding: 2px 8px 2px 0;
    text-align: center;
    position: absolute;
    width: 104px;
    height: 32px;
    background: url(../images/bg_ribbon.svg) no-repeat;
    z-index: 3;
    left: -3px;
    top: -16px;
}
.ribon > .pict_asset,
.d_item_wrapper > .pict_asset{
    position: absolute;
    left: -10px;
    top: -25px;
    z-index: 2;
}
.d_item_wrapper > .pict_asset.floating{
    left: 0;
    top: 15px;
}
.temporary_saved{
    margin: 80px -15px 0;
    padding: 40px 15px;
    background-color: #FFEAD0;
    border: solid 2px #F19110;
    position: relative;
}
.temporary_saved > .tab{
    background-color: #F19110;
    position: absolute;
    right: -2px;
    top: 0;
    transform: translateY(-100%);
    color: #fff;
    padding: 5px 10px;
    font-size: 1.4rem;
    border-top-left-radius: 20px;
}
/* クーポンチケット */
.coupon_ticket_wrapper .coupon_ticket{
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1em;
    color: #fff;
    background-color: #D65D47;
    padding: 5px 30px 5px 10px;
    border-radius: 3px;
    position: relative;
}
.coupon_ticket_wrapper .coupon_ticket::after{
    content: "";
    display: block;
    position: absolute;
    height: 22px;
    border-right: dotted 3px #fff;
    top: 0;
    right: 15px;
}
/* コーナー角丸を固定で入れる場合 */
[data-set-corner]{
    overflow: hidden;
}
[data-set-corner="rt"]{
    border-top-right-radius: 40px;
}
[data-set-corner="rb"]{
    border-bottom-right-radius: 40px;
}
[data-set-corner="lb"]{
    border-bottom-left-radius: 40px;
}
[data-set-corner="lt"]{
    border-top-left-radius: 40px;
}
[data-reset-corner="rt"],
[data-reset-corner="rt"]::after{
    border-top-right-radius: 0px !important;
}
[data-reset-corner="rb"],
[data-reset-corner="rb"]::after{
    border-bottom-right-radius: 0px !important;
}
[data-reset-corner="lb"],
[data-reset-corner="lb"]::after{
    border-bottom-left-radius: 0px !important;
}
[data-reset-corner="lt"],
[data-reset-corner="lt"]::after{
    border-top-left-radius: 0px !important;
}
[data-reset-corner="bottom"],
[data-reset-corner="bottom"]::after{
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}
[data-input-control="fill"]{
    --height: auto;
    height: var(--height);
    box-sizing: border-box;
}
[data-input-control="crop_image"]{
    --max-height: auto;
    max-height: var(--max-height);
}
[data-input-control="crop_image"] > img,
[data-input-control="crop_image"] video,
[data-input-control="crop_image"] > .image{
    --height: auto;
    height: var(--height) !important;
    object-fit: cover;
    width: 100%;
}
/* spalsh */
.bussiness .splash{
    background-color: #F8F8F8;
    padding-top: 40px;
    --height: auto;
    height: var(--height);
    position: relative;
}
.bussiness .splash .guide_wrapper{
    margin: 0 20px;
    height: 100%;
}
.bussiness .splash .guide_area{
    border: solid 1px #707070;
    background-color: #fff;
    border-radius: 30px;
    padding: 20px 20px 0;
}
.bussiness .splash .guide_ui{
    margin-top: 30px;
    justify-content: flex-end;
}
.bussiness .splash .guide_ui .label{
    font-size: 2.4rem;
    color: #CECDCD;
    margin-right: 10px;
}
.bussiness .splash .guide_area .swiper-container{
    padding-bottom: 50px;
}
.bussiness .splash .guide_area .swiper-pagination{
    bottom: 10px;
}
.bussiness .splash .guide_area .swiper-slide img{
    width: 100%;
    height: auto;
}
.bussiness .splash .tap_area{
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

/* accordion周り */
[data-input-control="set_address"] > li > a{
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    padding: 10px;
    position: relative;
    border-bottom: solid 1px #009F00;
}
[data-input-control="set_address"] > li > a,
[data-input-control="set_address"] > li > a:hover,
[data-input-control="set_address"] > li > a:visited,
[data-input-control="set_address"] > li > a:active{
    color: #009F00;
}
[data-input-control="set_address"] > li > a::after{
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: solid 3px #009F00;
    border-right: solid 3px #009F00;
    transform: rotate(45deg);
    top: calc(50% - 5px);
    right: 10px;
}
.accordion_title{
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #009F00;
    padding: 10px 0;
    border-bottom: solid 1px #009F00;
    position: relative;
}
.accordion_title > input + span::after{
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: solid 3px #009F00;
    border-right: solid 3px #009F00;
    transform: rotate(-45deg);
    top: calc(50% - 5px);
    right: 10px;
    transition: transform 0.3s;
}
.accordion_title > input:checked + span::after{
    transform: rotate(135deg);
}
.address_list{
    overflow-x: hidden;
}
.address_list > .column > li{
    width: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}
.lower_item [data-input-control='text_shorten_more'] > a.toggle{
    display: block;
    position: relative;
    bottom: 0;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 0;
}
.popup_wrapper > .popup.scroll_enabled{
    position: relative;
    padding-bottom: 40px;
}
.popup_wrapper > .popup.scroll_enabled::after{
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-right: solid 1px #707070;
    border-bottom: solid 1px #707070;
    transform: rotate(45deg);
    left: calc(50% - 10px);
    animation: arrow_effect 2s linear 0s infinite;
}

@keyframes arrow_effect {
    0% { transform: translate(0, 0) rotate(45deg); opacity: 1; }
    50% { transform: translate(0, 5px) rotate(45deg); opacity: 0; }
    51% { transform: translate(0, -5px) rotate(45deg); opacity: 0; }
    100% { transform: translate(0, 0) rotate(45deg); opacity: 1; }
}

.postal_address_list {
    width: 100%;
}
.postal_address_list > li{
    border-bottom: solid 1px #009F00;
}
.postal_address_list a,
.postal_address_list a:visited,
.postal_address_list a:active{
    display: block;
    text-decoration: none;
    color:#009F00;
    padding: 5px 5px;
    position: relative;
}
.postal_address_list a::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: solid 2px #009F00;
    border-right: solid 2px #009F00;
    transform: rotate(45deg);
}
.swiper-slide .thumbnail{
    position: relative;
    display: block;
}
.swiper-slide .thumbnail > video{
    width: 100%;
    height: auto;
}
.swiper-slide .thumbnail > a.play{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.swiper-slide .thumbnail > a.play > .icon{
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px #fff;
    background-color: rgba(0, 0, 0, 0.45);
    top: calc(50% - 40px);
    left: calc(50% - 20px);
}
.swiper-slide .thumbnail > a.play > .icon::after{
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
    left: calc(50% - 5px);
    top: calc(50% - 10px);
}
.swiper-slide .thumbnail.playing > a.play > .icon::after{
    border: none;
    width: 4px;
    height: 20px;
    background-color: #fff;
    /* left: calc(50% - 3px); */
}
.swiper-slide .thumbnail.playing > a.play > .icon::before{
    content: "";
    position: absolute;
    width: 4px;
    height: 20px;
    background-color: #fff;
    left: calc(50% + 2px);
    top: calc(50% - 10px);
}

/* 更新ありアイコン */
.update_icon{
    position: relative;
    z-index: 5;
}
.update_icon > .update_icon_balloon{
    position: absolute;
    display: inline-block;
    color: #fff;
    background-color: #EF547E;
    font-size: 1.2rem;
    padding: 5px 10px;
    border-radius: 8px;
    line-height: 1em;
    right: 0;
    top: -17px;
}
.update_area > .update_icon{
    height: 20px;
}
.update_area > .update_icon > .update_icon_balloon{
    top: 0;
}
.update_icon.align_left > .update_icon_balloon{
    right: auto;
}
.update_icon > .update_icon_balloon::after{
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 4px);
    top: 100%;
    border-style: solid;
    border-width: 8px 4px 0 4px;
    border-color: #EF547E transparent transparent transparent;
}
.update_icon > .update_icon_balloon > .update_icon_label::before{
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/ic_update.svg);
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 5px;
}
.history_list .history_log > .update_icon{
    padding: 0;
    z-index: 3;
}
/* 店舗情報未登録アイコン */
.no_regist_icon{
    position: relative;
    z-index: 2;
}
.no_regist_icon > .no_regist_icon_inner{
    position: absolute;
    right: 0;
    top: -40px;
}
.no_regist_icon .no_regist_icon_balloon {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 1px solid #707070;
    line-height: 1em;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: normal;
    font-size: 1.2rem;
    color: #333;
    vertical-align: top;
}
.no_regist_icon .no_regist_icon_balloon::after {
    display: block;
    content: "";
    background: #fff;
    width: 10px;
    height: 5px;
    bottom: -3px;
    right: 14px;
    transform: rotate(25deg);
    z-index: 2;
    position: absolute;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
}
.no_regist_icon .no_regist_icon_img{
    display: inline-block;
    position: relative;
    margin-left: -12px;
    width: 40px;
    height: 40px;
    background: url(../images/img_cat_01.svg) left top/ 40px 60px no-repeat;
}