﻿@charset "UTF-8";
:root {
  --bottle-list-area-padding: 12px;
  --search-zone-padding: 12px;
  --bottle-table-margin: 10px; }

/******************************************/
/* フォーム */
/**********************************************/
/* サーチフォーム */
.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--search-form-border);
  border-radius: 3px; }
  .search-form input {
    width: 250px;
    height: 30px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none; }
  .search-form input::placeholder {
    color: #777777; }
  .search-form button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 30px;
    border: none;
    border: 2px solid var(--search-form-border);
    background-color: var(--search-form-background-color);
    cursor: pointer; }
  .search-form button::after {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: ''; }

/******************************************/
/* フォーム */
/* bootstrap上書き */
.form-group {
  padding: 5px 40px 5px 40px; }
  .form-group label {
    padding: 1px 5px 1px 5px; }

.form-item {
  margin: 10px 0px 10px 0px; }

.form-control,
.form-select {
  margin: 10px 0px 10px 0px; }

.form-item-flex {
  display: flex;
  padding-top: 6px;
  padding-bottom: 6px;
  height: 37px;
  width: fit-content;
  border-bottom: 1px solid;
  border-color: lightgray; }
  .form-item-flex div {
    margin-top: auto;
    margin-bottom: auto;
    width: 160px; }
  .form-item-flex label {
    height: 25px; }

/* ローダー */
.spinner-field {
  position: absolute;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: lightgray;
  opacity: 0.5;
  z-index: 99; }

/* ボタン */
.btn {
  min-width: 100px;
  height: 40px; }

.btn-light {
  border: 0.1rem solid;
  border-color: gray; }

.btn-light:hover {
  border-color: #d3d4d5;
  background-color: #d3d4d5; }

.button-group {
  padding: 5px 40px 0px 40px; }

.button-item {
  padding: 10px 0px 10px 0px; }
  .button-item button {
    width: 100%; }

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac; }

button.accept-policy {
  font-size: 1rem;
  line-height: inherit; }

.btn-add {
  height: 45px;
  width: 45px;
  position: absolute;
  right: 10px;
  bottom: 20px;
  border-color: lightgray;
  background-color: lightgray;
  border-radius: 45px;
  transition: transform 0.5s;
  transform: rotate(0deg);
  z-index: 1100; }
  .btn-add.active {
    transition: transform 0.5s;
    transform: rotate(-225deg); }

/* LINEアイコン */
.line-icon {
  background-image: url("/img/line/btn_base.png");
  background-size: cover; }

/* LINEログインボタン */
.btn-line {
  width: 100%;
  display: flex;
  background-color: #06C755;
  position: relative; }
  .btn-line .line-icon {
    position: absolute;
    left: 0px;
    height: 35px;
    width: 35px; }
  .btn-line .btn-line-text {
    width: 100%;
    text-align: center;
    color: white; }

/* Googleアイコン */
.google-icon {
  background-size: cover;
  padding: 5px; }

/* Googleログインボタン */
.btn-google {
  width: 100%;
  display: flex;
  border-color: lightgray;
  position: relative; }
  .btn-google .google-icon {
    position: absolute;
    left: 0px;
    height: 35px;
    width: 35px; }
  .btn-google .btn-google-text {
    width: 100%;
    text-align: center; }

/* Twitterログインボタン */
.twitter-icon {
  background-image: url("/img/twitter/x-logo.png");
  background-size: cover; }

.btn-twitter {
  width: 100%;
  display: flex;
  background-color: black;
  position: relative; }
  .btn-twitter .twitter-icon {
    position: absolute;
    left: 1px;
    height: 35px;
    width: 35px; }
  .btn-twitter .btn-twitter-text {
    width: 100%;
    text-align: center;
    color: white; }

/* アコーディオン */
:root {
  --accordion-botton-color: #0c63e4; }

.accordion {
  height: fit-content; }

.accordion-outer {
  padding: 10px 10px 10px 10px; }

.accordion-item {
  border-radius: 5px; }

.accordion-collapse {
  /*
    border-radius: 0px 0px 5px 5px;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: lightgray;
    */
  box-shadow: 0px 0.5px 2px rgba(0, 0, 0, 0.2); }

.accordion-flush .accordion-item .accordion-button {
  border-radius: 5px; }

.accordion-flush .accordion-item .accordion-header:has(.collapsed) {
  border-radius: 5px; }

.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px; }

.accordion-header {
  height: 40px;
  border-radius: 5px;
  border-radius: 5px 5px 0px 0px; }
  .accordion-header .accordion-button {
    height: 40px;
    /*color: var(--accordion-botton-color);*/
    background-color: var(--accordion-background-color);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); }
    .accordion-header .accordion-button:has(.collapsed) {
      border-radius: 5px; }
    .accordion-header .accordion-button:not(.collapsed) {
      border-radius: 5px 5px 0px 0px;
      color: unset; }

@media (min-width: 768px) {
  html {
    font-size: 16px; } }

/* トグル */
.toggle-outter {
  transform: scale(0.5, 0.5); }

.toggle-button {
  width: 75px;
  height: 25px;
  padding-top: 1px;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  background-color: #dddddd;
  cursor: pointer;
  transition: background-color .4s;
  /* 表示する文字（OFFのとき） */
  /* 表示する文字（ONのとき） */ }
  .toggle-button input {
    display: none; }
  .toggle-button span {
    width: 50px; }
    .toggle-button span:after {
      font-family: sans-serif;
      content: attr(data-label);
      padding: 0 0 0 30px;
      /* 表示する位置 */
      color: #999999;
      /* 文字色 */ }
  .toggle-button:has(:checked) {
    background-color: var(--toggle-button-checked-color); }
    .toggle-button:has(:checked) span:before {
      left: 50px; }
    .toggle-button:has(:checked) span:after {
      left: 50px;
      font-family: sans-serif;
      content: attr(data-label);
      padding: 0 10px 0 15px;
      /* 表示する位置 */
      color: white;
      /* 文字色 */ }
    .toggle-button:has(:checked)::after {
      left: 50px; }
  .toggle-button::before {
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    text-align: center; }
  .toggle-button::after {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 0 5px darkgray;
    background-color: #fff;
    transition: left .4s;
    border: 0.1rem solid;
    border-color: lightgray;
    content: ''; }

/* アラート */
.alert-outer {
  width: 100%;
  position: absolute; }
  .alert-outer #liveAlertPlaceholder {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    text-align: center;
    z-index: 100; }
    .alert-outer #liveAlertPlaceholder .alert {
      width: 100%;
      display: flex;
      justify-content: left;
      box-shadow: 0 0.15rem 0.75rem rgba(0, 0, 0, 0.2);
      margin-bottom: .5rem; }
      .alert-outer #liveAlertPlaceholder .alert .bi {
        width: 20px;
        height: 20px; }

/* エラー */
/**********************************************/
/* エラーメッセージ */
.error {
  color: red; }

/**********************************************/
/* tabulator */
.tabulator .tabulator-header .tabulator-header-contents {
  height: 40px; }
  .tabulator .tabulator-header .tabulator-header-contents .tabulator-col {
    height: 40px; }
    .tabulator .tabulator-header .tabulator-header-contents .tabulator-col .tabulator-col-content {
      background-color: var(--accordion-background-color);
      height: 40px;
      padding: 8px; }

.tabulator .tabulator-tableholder .tabulator-table .tabulator-row .row-link {
  color: blue;
  text-decoration: underline; }

.tabulator-row {
  height: 35px;
  min-height: 35px; }
  .tabulator-row .tabulator-cell {
    height: 35px;
    padding: 7px; }

/*
.tabulator-tableholder {
    overflow-x: hidden;
}
*/
/******************************************/
.outer {
  display: flex;
  justify-content: center;
  align-items: center; }

/******************************************/
/* マテリアルアイコン */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  /*
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    */ }

/******************************************/
/* 必須マーク */
.required-mark {
  border: 0px solid;
  border-color: black;
  border-radius: 5px;
  background-color: orangered;
  color: white;
  font-weight: bold;
  font-size: 80%;
  margin-top: auto;
  margin-bottom: auto; }

/******************************************/
/* inner-page-top */
.inner-page-top {
  padding: 10px 15px 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center; }

.inner-page-top .title {
  font-weight: bold;
  font-size: 140%; }

/**********************************************/
/* レスポンシブ */
/* 横画面 */
@media screen and (orientation: landscape) {
  /* ここに処理を書く*/ }

/* 縦画面 */
@media screen and (orientation: portrait) {
  /* ここに処理を書く*/ }

@media (max-width: 768px) {
  .title {
    font-weight: bold;
    font-size: 120%; }
  .inner-page-top {
    padding: 5px 15px 5px 15px; } }
