@charset "UTF-8";


/* ───────── 

  DELI PRICE

───────── */

.deli_price-wrap{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.deli_price-wrap .list-row{
  gap:10px;
  margin: 10px 0;
  justify-content: center;
}
.deli_price-wrap .list-row li{
  gap:0;
}
.deli_price-wrap .list-row li::after{
  content: '';
  width: 0;
  margin-left: 0;
}


@media (max-width: 480px) {  /*SP*/
.deli_price-wrap .table-price .item{
	display: none;
}
.deli_price-wrap .table-price tbody{
	width: 100%;
}
.deli_price-wrap .table-price th{
	height: auto;
	padding: 8px 10px;
	border-width: 1px 1px 0 1px;
	text-align: left;
	justify-content: flex-start;
}
.deli_price-wrap .table-price td{
	height: auto;
	padding: 8px;
	border-width: 0 1px 0 1px;
}
.deli_price-wrap .table-price td:last-child {
    border-bottom: 0;
}
.deli_price-wrap .table-price tr:last-child{
	border-bottom: 1px solid var(--color-lightgray);
}
}


@media (min-width: 481px) {  /*PC*/
.deli_price-wrap .table-price th{
	height: auto;
	padding: 8px 10px;
	border-width: 1px 1px 1px 1px;
	text-align: left;
	width: 70%;
}
.deli_price-wrap .table-price tr.item th{
	text-align: center;
}
}



/* ───────── 

  DELI HOTEL

───────── */
.deli_hotel-wrap{
    display: flex;
    flex-direction: column;
    gap:20px;
}

@media (max-width: 480px) {  /*SP*/
.deli_hotel-wrap .table-price .item{
	display: none;
}
.deli_hotel-wrap .table-price tbody{
	width: 100%;
}
.deli_hotel-wrap .table-price th{
	height: auto;
	padding: 8px 10px;
	border-width: 1px 1px 0 1px;
	text-align: left;
	justify-content: flex-start;
}
.deli_hotel-wrap .table-price td{
	height: auto;
	padding: 8px;
	border-width: 0 1px 0 1px;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.deli_hotel-wrap .table-price td:last-child {
    border-bottom: 0;
	justify-content: flex-end;
}
.deli_hotel-wrap .table-price tr:last-child{
	border-bottom: 1px solid var(--color-lightgray);
}
}


@media (min-width: 481px) {  /*PC*/
.deli_hotel-wrap .table-price th{
	height: auto;
	padding: 8px 10px;
	border-width: 1px 1px 1px 1px;
	text-align: left;
}
.deli_hotel-wrap .table-price tr.item th{
	text-align: center;
}
.deli_hotel-wrap .table-price tr.item th:nth-of-type(1){
	width: 30%;
}
.deli_hotel-wrap .table-price tr.item th:nth-of-type(2){
	width: 38%;
}
.deli_hotel-wrap .table-price tr.item th:nth-of-type(3){
	width: 20%;
}
.deli_hotel-wrap .table-price tr.item th:nth-of-type(4){
	width: 12%;
}
.deli_hotel-wrap .table-price td{
	text-align: left;
	padding: 10px;
}

}





/* ───────── 

  PRIVACY POLICY

───────── */

.privacy {
	margin: 0 20px 0px 20px;
}
.privacy dt {
	font-size: var(--text-L);
	font-weight: 600;
	margin-bottom: 15px;
	border-left: 5px solid var(--color-mid);
	padding: 2px 0 2px 12px;
}
.privacy dd {
	margin: 0px 20px 30px;
}
.privacy dd ol {
	margin-top: 20px;
}





/* ───────── 

  CONTACT

───────── */

.contact-wrap{
    display: flex;
    flex-direction: column;
    gap:10px;
}
#contact .box-callout-icon{
	margin: 20px 0;
}


/* ───────── 

  MAIL FORM

───────── */
/*フォーカス設定*/
input:focus,
textarea:focus {
background-color: #ffebef;
}
/*必須　制限*/
form span.need{
	padding:0 0 0 5px;
	font-size:var(--text-S2);
	color:var(--color-accent);
}

/*メールフォーム基礎*/
.formBox form{
    display: flex;
    flex-direction: column;
    gap:40px;
	margin-top: 30px;
}
.formBox dt{
	font-weight:600;
	font-size: var(--text-L);
	color: var(--color-mid);
	width:100%;
	line-height: 1.5;
}
.formBox dt::before{
	content: '■';
	font-size: var(--text-S);
}
.formBox dd{
	padding: 5px 0 20px 0;
}
.formBox ul{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 11px;
}
.formBox li{
	display:inline-flex;
	align-items: center;
	padding:0;
	margin:0;
	background:var(--color-white);
}
.selectbox{
	position: relative;
}
.selectbox::before,
.selectbox::after {
    position: absolute;
    content: '';
    pointer-events: none;
}
.selectbox::after {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 3px solid var(--color-pink);
    border-right: 3px solid var(--color-pink);
    content: '';
}
.formBox .selectbox select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	min-height: 1em;
	min-width: 20em;
	padding: 10px 25px 10px 10px;
	border:solid 1px #ccc;
	background:#fff;
	border-radius: 3px;
	color: var(--color-dark);
	font-size: 14px;
	cursor: pointer;
}
.formBox input[type="radio"]{
  position: relative;
}
.formBox input[type="text"],
.formBox input[type="tel"],
.formBox input[type="email"],
.formBox textarea{
  border:solid 1px #ccc;
  color: var(--color-dark);
  padding: 10px;
  min-width: 20em;
}
.formBox textarea{
  box-sizing: border-box;
  width: 100%;
}

.formBox input[type="radio"],
.formBox input[type="checkbox"]{
  margin-right: -2em;
}
.formBox input{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.formBox input[type="radio"]{
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
}
.formBox input[type="radio"]:checked {
  border: 1px solid var(--color-pink);
}
.formBox input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-pink);
  content: '';
}
.formBox input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  background: #fff;
  vertical-align: -2px;
}
.formBox input[type="checkbox"]:checked {
  border: 1px solid var(--color-pink);
}
.formBox input[type="checkbox"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '✓';
  color: var(--color-pink);
}

.formBox input + label {
	padding:7px 1em 7px 2em;
	background:#f4f4f4;
	border-radius: 10px;
}
.formBox input:checked + label {
  background: #ffebef;
}

/*送信する*/
.formBox .formSubmit{
    display: flex;
    flex-direction: column;
    gap:20px;
	text-align: center;
}
.formBox input[type="submit"]{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f0a0a8, #e8889a);
    color: var(--color-white);
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 100px;
  border:solid 1px var(--color-pink);
    font-size: var(--text-L);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease;
}
.formBox input[type="reset"]{
  padding: 5px 20px;
    border-radius: 100px;
  cursor:pointer;
  background:#f4f4f4;
  font-size:14px;
  transition: all 0.2s;
  border:solid 1px #ccc;
  color: var(--color-gray);
}
.formBox input[type="submit"]:hover,
.formBox input[type="reset"]:hover{
  border:solid 1px var(--color-pink);
  background:var(--color-pink);
  color: #fff;
}

@media (min-width: 560px) {  /*PC*/
.formBox{
	max-width: 800px;
	margin: 0 auto;
}
.formBox form dl{
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
    gap:30px;
}
.formBox form dl dt{
	width: 35%;
}
.formBox form dl dd{
	width: calc(65% - 30px);
	padding-bottom: 0;
}
}

