@charset "UTF-8";

/* 基本 */
:root {
  --v-space: clamp(90px, 9vw, 120px);
  --bg-color: #cfd5c0;
}

body {
  margin: 0;
  /* background-color: #eeeeee; */
  background-color: var(--bg-color);
  color: #222222;
  font-family: sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  filter: brightness(90%) contrast(120%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button:hover,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  cursor: pointer;
}

/* パンくずリスト */

#breadcrumb {
  background-color: #b95c45;
  padding: 6px;
  color: #fff;
}

#breadcrumb ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

#breadcrumb ul li:not(li:first-child)::before {
  content: " >>>　";
}

#breadcrumb ul li a {
  padding-right: 15px;
  background-image: url(../images/breadcrumb_arrow.png);
  background-repeat: no-repeat;
  background-position: right center;
}

/* 横幅と左右の余白 */
.w-container {
  width: min(92%, 1166px);
  margin: auto;
  position: relative;
}

/* ヘッダー */
.header {
  height: 112px;
  /* background-color: #ffffff; */
  background-color: var(--bg-color);
}

.header-container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  align-items: center;
  height: 100%;
}

.header-container .site img {
  width: 80px;
  height: auto;
}

/* admin-page */
.header .admin-page {
  justify-self: end;
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;

  & input,
  & button {
    padding: 10px;
    display: block;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .header .admin-page {
    /* flex-direction: column; */
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

/* ナビゲーションボタン */
.navbtn {
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #aaaaaa;
  font-size: 30px;
}

.open .navbtn {
  z-index: 110;
  color: #ffffff;
}

.navbtn .fa-bars {
  display: revert;
}

.open .navbtn .fa-bars {
  display: none;
}

.navbtn .fa-times {
  display: none;
}

.open .navbtn .fa-times {
  display: revert;
}

@media (min-width: 820px) {
  .navbtn {
    display: none;
  }
}

/* ナビゲーションメニュー：モバイル */
@media (max-width: 819px) {
  /* .nav {
        position: fixed;
        inset: 0 -100% 0 100%;
        z-index: 100;
        background-color: #4e483ae6;
        transition: transform 0.3s;
    }

    .open .nav {
        transform: translate(-100%, 0);
    }

    .open body {
        position: fixed;
        overflow: hidden;
    } */

  .nav {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 100;
    background-color: #4e483ae6;
    transition: transform 0.3s;
  }

  .nav ul {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
    color: #ffffff;
  }

  @media (max-width: 820px) {
    .nav li > a {
      font-size: 13px;
    }
  }

  .nav li {
    text-align: center;
    flex: auto;
    padding: 1em;
  }

  .nav a {
    color: #fff;
  }
}

/* ナビゲーションメニュー：PC */
/* @media (min-width: 768px) {
    .nav ul {
        display: flex;
        gap: 40px;
        color: #707070;
    }
} */

@media (min-width: 820px) {
  .nav {
    grid-column: 1;
    grid-row: 2;
  }

  .nav ul {
    display: flex;
    gap: 40px;
    color: #707070;
  }
}

/* ヒーロー */
/* .hero {
  height: 650px;
  background-image: url(../img/hero.jpg);
  background-position: center;
  background-size: cover;
} */

.hero {
  height: 650px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/hero.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}

.hero-container {
  display: grid;
  justify-items: center;
  align-content: center;
  height: 100%;
}

.hero h1 {
  margin-bottom: 42px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 5vw, 68px);
  min-height: 0vw;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  background-color: hsl(90 60% 50% / 0.1);
  border: 1px solid transparent;
  border-radius: 50%;
  filter: drop-shadow(5px 5px 5px rgb(64, 64, 6));
}

.hero p {
  margin-bottom: 72px;
}

/* ボタン */
.btn {
  display: block;
  width: 260px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #e8b368;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  text-shadow: 0 0 6px #00000052;
}

.btn-accent {
  background-color: #b72661;
}

/* 画像とテキスト */
.imgtext {
  padding: var(--v-space) 0;
  /* background-color: #ffffff; */
  background-color: var(--bg-color);
}

.imgtext + .imgtext {
  padding-top: 0;
}

.imgtext-container {
  display: flex;
  flex-direction: column;
  gap: clamp(45px, 6vw, 80px);
}

.imgtext-container img,
.posts-container img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  border-radius: 20px;
}

.imgtext-container img:hover,
.posts-container img:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .imgtext-container {
    flex-direction: row;
    align-items: center;
  }

  .imgtext-container.reverse {
    flex-direction: row-reverse;
  }

  .imgtext-container > .text {
    flex: 1;
    min-width: 17em;
  }

  .imgtext-container > .img {
    flex: 2;
  }
}

/* タイトルとサブタイトル（赤色の短い線で装飾） */
.heading-decoration {
  font-size: clamp(30px, 3vw, 40px);
  min-height: 0vw;
  font-weight: 400;
}

.heading-decoration::after {
  display: block;
  content: "";
  width: 160px;
  height: 0px;
  border-top: solid 1px #b72661;
  margin-top: 0.6em;
}

.heading-decoration + p {
  margin-top: 1em;
  margin-bottom: 2em;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

/* 記事一覧 */
.posts {
  padding: var(--v-space) 0;
  /* background-color: #f3f1ed; */
  background-color: var(--bg-color);
}

.posts-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 25px;
}

@media (min-width: 768px) {
  .posts-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 記事一覧の記事 */
/* .post a {
  display: block;
}

.post h3 {
  margin: 1em 0 0.5em;
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 700;
  min-height: 0vw;
}

.post p {
  max-width: 20em;
  font-size: clamp(10px, 1.6vw, 14px);
  min-height: 0vw;
} */

.post img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
  .post img {
    height: 180px;
  }
}

/* パーツの見出し */
.heading {
  position: absolute;
  top: calc((var(--v-space) + 0.6em) * -1);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5.2vw, 70px);
  min-height: 0vw;
  font-weight: 300;
}

.heading span {
  display: block;
  color: #666666;
  font-size: 18px;
}

/* フッター */
.footer {
  padding: 70px 0;
  /* background-color: #ffffff; */
  background-color: var(--bg-color);
  color: #707070;
  font-size: 13px;
}

.footer-container {
  display: grid;
  gap: 50px;
  justify-items: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }

  .footer-container > .footer-site {
    margin-bottom: 20px;
  }

  .footer-container > *:not(.footer-sns) {
    justify-self: start;
  }

  .footer-container > .footer-sns {
    grid-column: 2;
    grid-row: 1 / 4;
    justify-self: end;
    align-self: center;
  }
}

.footer-site {
  & a {
    display: flex;
    justify-content: center;
  }

  & img {
    width: 50%;
    height: auto;
  }
}

/* フッター：SNSメニュー */
.footer-sns {
  display: flex;
  gap: 24px;
  font-size: 24px;
}

.footer-sns a {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1 / 1;
  background-color: #cccccc;
  color: #656262;
  clip-path: circle(50%);
}

@supports not (aspect-ratio: 1 / 1) {
  .footer-sns a {
    height: 36px;
  }
}

/* フッター：テキストメニュー */
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* 記事 */
.entry {
  padding-bottom: var(--v-space);
  /* background-color: #ffffff; */
  background-color: var(--bg-color);
}

.entry-img img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: calc(var(--v-space) * 2 / 3);
}

.entry .w-container {
  max-width: 720px;
}

.entry .heading-decoration {
  font-size: clamp(30px, 6.25vw, 48px);
}

.entry-container {
  font-size: clamp(16px, 2.4vw, 18px);
}

.entry-container :where(h1, h2, h3, h4, h5, h6, p, figure, ul) {
  margin-top: revert;
  margin-bottom: revert;
  padding: revert;
  list-style: revert;
}

.entry-container p {
  margin: 1.8em 0;
}

.entry-container > :first-child {
  margin-top: 0;
}

.entry-container > :last-child {
  margin-bottom: 0;
}

/* プラン */
.plans {
  padding: var(--v-space) 0;
  /* background-color: #e9e5e9; */
  background-color: var(--bg-color);
}

.plans-container {
  display: grid;
  gap: 27px;
}

@media (min-width: 768px) {
  .plans-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plans-btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* プラン：カード */
.plan {
  display: flex;
  flex-direction: column;
  padding: 60px 27px;
  border-radius: 20px;
  background-color: #ece3ae;
}

.plan h3 {
  margin-bottom: 38px;
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 400;
}

.plan .desc {
  margin-bottom: 38px;
}

.plan .price {
  margin-top: auto;
  margin-bottom: 22px;
  /* font-size: 26px; */
  font-size: 20px;
  font-weight: bold;
}

.plan .btn {
  width: auto;
}

/* ドローン・アニメーション */

/* @keyframes drn-anim {
  0% {
    top: 50vh;
    left: 10vw;
  }

  25% {
    top: 25vh;
    left: 50vw;
  }

  50% {
    top: 50vh;
    left: 70vw;
  }

  75% {
    top: 75vh;
    left: 50vw;
  }

  100% {
    top: 50vh;
    left: 10vw;
  }
}

.animation {
  figure {
    position: absolute;
    z-index: 100;
    animation-name: drn-anim;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  img {
    width: 100px;
    height: auto;
  }
} */

#movingImage {
  position: absolute;
  width: 32px;
  height: 8px;
}

/* お問い合わせ */

.contact-img img,
.admin-img img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.entry {
  background-color: var(--bg-color);
}

.contact .w-container {
  /* background-color: #fff; */
  background-color: var(--bg-color);
  border-radius: 1em;
  padding: 1.5em;
  margin: 1em auto;
  width: min(92%, 840px);
}

.table dl {
  background-color: #ccc;
  background-color: var(--bg-color);
  display: grid;
  grid-template-columns: auto;
  gap: 1px;
}

@media (min-width: 801px) {
  .table dl {
    grid-template-columns: 12em auto;
  }
}

.table dl dt,
.table dl dd {
  margin: 0;
  padding: 6px;
}

.table dl dt {
  background-color: #b95c45;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 2px #000;
}

.table dl dd {
  background-color: #eee;
}

.table dd input[type="text"],
.table dd input[type="email"],
.table dd input[type="password"],
.table dd textarea {
  box-sizing: border-box;
  width: 100%;
}

.table dd textarea {
  height: 10em;
}

/* 管理メニュー */
.admin-container {
  background-color: #fff;
  background-color: var(--bg-color);
  padding: 5px;
  margin-bottom: 1em;
}

.admin-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
}

.admin-menu a {
  display: grid;
  justify-items: center;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 0.5em;
  color: #666;
}

.admin-menu a:hover {
  color: #b72661;
  border: 1px solid #b72661;
}

.admin-menu a svg {
  font-size: 6em;
}

/* ログイン */
.login .w-container {
  margin: 1em auto;
  padding: 5px;
  background-color: #fff;
}

/* お問い合わせ：管理 */
.contact-container table {
  background-color: #333;
  border: 1px solid #000;
}

.contact-container th,
.contact-container td {
  background-color: #fff;
  padding: 5px;
}

/* .contact-container td form{
	display: inline-block;
} */
.contact-container td.d-form {
  display: flex;
  gap: 5px;
  line-height: 3em;
}

/* ステーショナリー：管理 */
.control {
  display: flex;
  gap: 5px;
  padding: 5px;
  justify-content: end;
}

.goods-container {
  padding: 30px;
  background-color: #ddaf6e;
  border-radius: 20px;
}

.goods-page {
  border-radius: 20px;
  padding: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.goods-page form {
  padding: 20px;
  margin: 20px 0;
  width: 80%;
  border: 1px solid #b72661;
  border-radius: 20px;

  > h3 {
    margin-bottom: 10px;
  }
}

.form-point {
  width: 80%;
  padding: 10px;
  margin-bottom: 30px;

  > p {
    font-size: 12px;
    line-height: 2;

    > em {
      color: red;
      font-weight: bold;
    }
  }
}

.form-point .form-warning {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

/* なみうえ追加　0924-2 */

.sell-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .sell-page {
    grid-template-columns: repeat(1, 1fr);
  }
}

.btn-section {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.post h3 {
  margin: 1em 0 0.5em;
  font-size: 18px;
  font-weight: 600;
}

.post p {
  max-width: 20em;
  font-size: 16px;
}

.post img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  border-radius: 15px;
}

/* ボタン */
.btn-2 {
  /* ボタンのスタイルリセット */
  appearance: none;
  outline: none;
  border: 0;
  background: none;

  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 15px 16px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #b95c45;
  color: #fff;
  font-size: 18px;
  text-align: center;
  text-shadow: 0 0 6px #00000052;
  text-align: center;
}

.accent {
  display: block;
  width: 260px;
  padding: 18px 16px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #fffaf3;
  border: 1px solid #666;
  color: #666;
  font-size: 16px;
  text-align: center;
  filter: drop-shadow(3px 3px 3px #dadada);
}

/* 0924 追加 */
.to-right {
  text-align: right;
}

.mypage-history .reserve-heading {
  margin-top: 30px;
}

/* お支払い情報入力 */
.contact-form-box {
  color: #555;
  margin-bottom: 80px;
}

.contact-form-box h2 {
  padding: 10px;
}

.resv-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.resv-item table {
  border-collapse: collapse;
  width: 100%;
}

.resv-item table th {
  background-color: #f1d7b3;
}

.resv-item table th,
.resv-item table td {
  border: 1px solid #ccc;
  text-align: left;
}

.buy-item {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.buy-item table {
  border-collapse: collapse;
  width: 100%;
}

.buy-item table th {
  background-color: #f1d7b3;
}

.buy-item table th {
  border: 1px solid #ccc;
  text-align: center;
}

.buy-item table td {
  border: 1px solid #ccc;
  text-align: center;
}

.total p {
  text-align: right;
  margin: 5px;
}

.syusei {
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  background-color: #eee;
}

.contact-form-box2 {
  color: #555;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border: 1px solid #b72661;
  padding: 20px;
  gap: 20px;
  border-radius: 20px;
  margin-bottom: 80px;
}

.login-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact-form-box2 a {
  appearance: none;
  outline: none;
  border: 0;
  background: none;
  display: block;
  text-align: center;
  padding: 10px;
  width: 200px;

  color: #fff;
  background-color: #b95c45;
  border-radius: 10px;
}

.input-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  padding: 15px;
  background-color: #f1d7b3;
  gap: 5px;
  border-radius: 5px;
}

.input-form form p {
  grid-column: span 2;
}

.input-form form p label {
  display: grid;
  grid-template-columns: 4em 4em 1fr 1em;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
}

.input-form form p label textarea {
  grid-column: 3/4;
}

.input-form p:nth-child(8) {
  text-align: right;
  margin: 5px;
}

.btn-3 {
  grid-column: span 2;
  grid-row: 9/10;
  justify-self: center;
  align-content: center;
}

.btn-3 p:last-child a {
  /* display: flex;
  align-content: center;
  text-align: center; */
  margin: 0 auto;
}

.contact-container {
  padding: 30px;
  border: 1px solid #b95c45;
  border-radius: 20px;
}

/* pay_info・confirm共通 追加*/

.contact-form-box22 {
  border-radius: 20px;
  margin: 40px 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #f1d7b3;
}

@media (max-width: 767px) {
  .hint {
    width: 90%;
  }
}

.input-form2 p {
  margin-bottom: 20px;
  font-size: 0.9em;

  > label > input:not([type="radio"]) {
    width: 100%;
    height: 2em;
  }

  > label > em {
    font-weight: bold;
    color: red;
  }
}

.text-box-area {
  width: 100%;
  height: 120px;
}

.btn-section {
  margin: 60px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.input-form2 dl {
  margin-bottom: 20px;
  font-size: 0.9em;

  width: 100%;
}

.input-form2 dt {
  padding: 4px;
  border: 1px solid #333;
  background-color: #eee;
  color: #999;
}

.pay-right {
  justify-self: right;
}

.pay-center {
  justify-self: center;
}

.contact-form-box .total .price {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-form-box .total .ret-btn {
  background-color: #f7dec1;
  border: 1px solid #efaa3bcb;
  padding: 5px;
}

/* なみうえ追加　0925 */
/* grid */

/* contact  */
.plan-set-box {
  margin-top: 3vw;
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 15px;
}

.plan-box1,
.plan-box2,
.plan-box3 {
  background-color: #fcfcfc;
  height: auto;
  padding: 3em;
  border-radius: 15px;

  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 30px;
}

.plan-box3 {
  grid-row: 1/-1;

  > p {
    /* width: 70%; */
    font-size: 11px;
  }
}

.plan-box3 figure {
  width: 300px;
  height: 200px;
  background-color: #c7c7c7;
  display: flex;
  justify-content: center;
  align-items: center;

  > p {
    color: #fff;
    font-weight: bold;
  }
}

.plan-box3 iframe {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .plan-set-box {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: auto;
  }

  .plan-box3 {
    grid-row: 3;
  }
}

/* company pages */
.company-law h2,
.company-policy h2 {
  margin-bottom: 30px;
}

.company-law h3,
.company-policy h3 {
  margin-top: 10px;
}

.company-company .company-profile p:first-child {
  margin-bottom: 20px;
}

.company-company .company-profile table {
  background-color: #999;
  margin-bottom: 20px;
}

.company-company .company-profile table tr {
  background-color: #fff;
}

.company-company .company-profile table th {
  width: 7em;
}

.company-company .company-profile table td {
  width: 10em;
  text-align: center;
}

.company-company .company-profile iframe {
  margin-top: 20px;
  margin-bottom: 20px;
}

.company-company .company-profile h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ポップアップを表示させるトリガー */
.popup-container {
  position: relative;
  display: inline-block;
}

.popup-trigger {
  /* padding: 10px 20px; */
  /* background-color: #3498db; */
  /* color: white; */
  /* border-radius: 5px; */
  cursor: pointer;
  font-size: 16px;
  border-bottom: 2px dotted #f00;
  display: inline;
}

/* ポップアップテキストの初期設定 */
.popup-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  /* トリガーの上に表示 */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s;
}

/* マウスオーバー時にポップアップを表示 */
.popup-container:hover .popup-text {
  visibility: visible;
  opacity: 1;
}

/* ヘッダのログインボタンとか */
.header-btn {
  background-color: #b95c45;
  /* border: 1px solid #f0863fd7; */
  border: none;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 0.8em;
  border-radius: 10px;
}

.header-container .admin-page2 form {
  display: flex;
  justify-content: end;
}

.header-btn2 {
  background-color: #b95c45;
  /* border: 1px solid #f0863fd7; */
  border: none;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 6px 10px;
  width: 200px;
  line-height: 2em;
  color: #fff;
  font-size: 0.8em;
  border-radius: 10px;
}

/* マイページ */
.mypage-menu a {
  color: #b95c45;
  border: 1px solid #b95c45;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

/* content/confirm.php の「この内容で購入する」ボタン */
.contact-form-box22 .btn-section .confirm-btn {
  border: none;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

/* マイページのテーブルの装飾 */
.table-style {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  /* width: 600px; */
  width: 100%;
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* box-shadow: 0 0 15px -6px #00000073; */
}

.table-style th,
.table-style td {
  padding: 20px 0;
  /* border-bottom: 1px solid #eee; */
  width: 100%;
}

.table-style td {
  /* border-right: 1px solid #999; */
  text-align: center;
  /* border-bottom: 1px solid #999;  */
}

.table-style td:last-child {
  /* border-right: none; */
}

.table-style th {
  /* width: 20%; */
  padding: 10px 0;
  font-size: 14px;
  /* padding: 15px; */
  background-color: #b95c45;
  color: #fff;
}

.table-style tr {
  text-align: center;
  /* width: 20%; */
  padding: 20px 0;
  background-color: #fff;
  color: #3a3a3a;
  /* border-bottom: 1px solid #999; */
}

/* .table-style tr:hover{
  background-color: #d4faff;
} */

.table-style .d-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: auto;
  border: none;

  & input {
    background-color: #b95c45;
    border: none;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
}

/* テーブル */

.contact-container40,
.contact-container40 tr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.table-style th,
.table-style td {
}

.contact-container40 tr th:not(:first-child) {
  background-color: #bc8e83;
}

.contact-container40 tr th {
  width: 80%;
}

.retbtn {
  text-align: center;

  & input,
  & a {
    background-color: #b95c45;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  }
}

.retbtns2 {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.history-retbtn {
  margin-top: 10px;
}

.new-user-add {
  margin-top: 30px;
  text-align: center;
}

/* 画面が小さくなった時にはパンくずリストを表示しない */
@media (max-width: 768px) {
  #breadcrumb {
    display: none;
  }
}

/*柿の葉 */
@keyframes drn-anim {
  0% {
    top: 25vh;
    left: 28vw;
    width: 30px;
    transform: rotate(0);
  }

  25% {
    top: 40vh;
    left: 80vw;
    width: 40px;
    transform: rotate(120deg);
  }

  50% {
    top: 65vh;
    left: 40vw;
    width: 30px;
    transform: rotate(240deg);
  }

  75% {
    top: 75vh;
    left: 80vw;
    width: 40px;
    transform: rotate(300deg);
  }

  100% {
    top: 90vh;
    left: 75vw;
    width: 30px;
    transform: rotate(360deg);
  }
}

.leaf {
  img {
    position: absolute;
    z-index: 100;
    animation-name: drn-anim;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: 50px;
    height: auto;
  }
}

/* 予約画面 */
.resv-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.resv-form div {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.resv-form input[type="submit"],
.resv-form input[type="reset"],
.resv-form input[type="button"] {
  background-color: #b95c45;
  color: #fff;
  border: none;
  padding: 5px 15px;
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.resv-form #datetime,
.resv-form #adult,
.resv-form #child {
  background-color: #e1b1a5;
  color: #000;
  border: none;
  padding: 5px 15px;
}

@media (max-width: 768px) {
  .resv-form h3 {
    font-size: 0.75em;
  }

  .resv-form div {
    /* flex-direction: column; */
    gap: 5px;
  }
}

#destmap {
  width: 100%;
  height: 500px;
}

.fromto-radio {
  display: flex;
  justify-content: space-between;

  & .from {
    background-color: rgb(34, 112, 255);
    color: #fff;
  }

  & .to {
    background-color: red;
    clear: #fff;
  }

  & .destmap-msg {
    font-size: 16px;
    color: #f00;
  }
}

@media (max-width: 768px) {
  .form-point dt,
  .form-point dd,
  .form-point dd input,
  .payinfo-point dt,
  .payinfo-point dd,
  .payinfo-point dd input {
    text-align: center;
  }
}

#to-datetime-msg,
#addr-info-from-msg,
#addr-info-to-msg {
  color: #f00;
}

.contact .contact-container #comment {
  font-size: 0.9em;
}

.marquee-container {
  width: 80%;
  overflow: hidden;
  /* background: #f0f0nonf0; */
  /* border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; */
  padding: 10px 0;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 50px;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-text {
  display: inline-block;
  margin-right: 50px;
  font-size: 18px;
  color: #333;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
