@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body {
  height: auto;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: darkcyan;
}
.header__title {
  margin-bottom: 2px;
  display: flex;
}
.header__title-text {
  color: initial;
  padding-top: 9px;
}
.header__title-sub {
  margin: 3px;
}
.header__title-img {
  width: 50px;
  height: 50px;
}

.footer {
  bottom: 0;
  background-color: #082f38;
  margin-top: 100px;
  width: 100%;
  padding: 5px 0 5px 0;
  font-size: 14px;
  color: white;
}

.contents {
  margin: 0 32px 40px;
}

.content {
  margin-bottom: 25px;
}
.content__text {
  font-size: 19px;
  padding: 10px 0;
  margin-bottom: 2px;
}
.content__text-sub, .content__text-sub2, .content__text-comment {
  background-color: rgb(228, 228, 228);
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  padding: 14px 8px 8px 10px;
}

.flex {
  display: flex;
  align-items: center;
}
.flex input {
  width: 8%;
}
.flex label {
  width: 92%;
}

.com-title {
  color: #5c5c5c;
  border-bottom: 1px solid #c3c3c3;
  border-top: 1px solid #c3c3c3;
  padding: 15px 5px;
  font-weight: 600;
}

.eng-title {
  color: rgb(43, 71, 71);
  font-weight: 600;
  font-size: 19px;
}

textarea,
label,
input,
select,
.input {
  display: block;
  width: 100%;
}

textarea,
input,
select {
  padding: 10px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
}

input {
  font-size: 20px;
}

.btn {
  color: #141414;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #c3c3c3;
}
.btn:hover {
  opacity: 0.5;
}
.btn_submit {
  background-color: #ff6c22;
  color: white;
  font-size: 1.2em;
  letter-spacing: 3px;
  border: none;
  padding: 20px;
  margin-top: 50px;
}
.btn a {
  text-decoration: none;
}

.btn-a {
  display: block;
  font-size: 1.6rem;
}

textarea {
  resize: vertical;
}

label {
  font-size: 19px;
  padding: 10px 0;
  margin-bottom: 2px;
}

label.required-a,
label.required,
label.optional, label.unable {
  position: relative;
  padding: 10px 40px;
}

.required::before {
  content: "必須";
  position: absolute;
  margin: 0 5px 2px 0;
  padding: 2px 5px;
  font-size: 0.6em;
  left: 0;
  top: 12px;
  background-color: orangered;
  border-radius: 4px;
  color: white;
}

.required-a::before {
  content: "条件";
  position: absolute;
  margin: 0 5px 2px 0;
  padding: 2px 5px;
  font-size: 0.6em;
  left: 0;
  top: 12px;
  background-color: rgb(255, 140, 0);
  border-radius: 4px;
  color: white;
}

.optional::before {
  content: "任意";
  position: absolute;
  margin: 0 5px 2px 0;
  padding: 2px 5px;
  font-size: 0.6em;
  left: 0;
  top: 12px;
  background-color: darkgray;
  border-radius: 4px;
  color: white;
}

.unable::before {
  content: "";
  position: absolute;
  margin: 0 5px 2px 0;
  padding: 2px 5px;
  font-size: 0.6em;
  left: 0;
  top: 12px;
}

.confirm dl {
  flex-flow: column;
}
.confirm dt {
  flex-basis: 40%;
  padding: 20px;
  background-color: #f1f1f1;
  border-bottom: 1px solid #ccc;
}
.confirm dd {
  flex-basis: 60%;
  padding: 20px;
  margin-left: 0;
  background-color: #fff;
  border-bottom: 1px solid #f1f1f1;
}

.ort_message {
  padding: 10px;
  background-color: rgba(250, 203, 203, 0.31);
  margin-bottom: 0px;
}
.ort_message::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  content: "";
  background: url(../img/warning_icon.svg) no-repeat;
  background-size: contain;
  font-size: 1em;
}

.attention-msg {
  display: block;
  margin: 0px 2px 5px 2px;
  background-color: rgba(250, 203, 203, 0.31);
  padding: 5px;
  border-radius: 3px;
  font-size: 0.9em;
  color: darkred;
}

.err-msg {
  display: block;
  margin: 2px 20px 0 20px;
  background-color: rgba(250, 203, 203, 0.31);
  padding: 5px;
  border-radius: 3px;
  font-size: 0.9em;
  color: darkred;
}
.err-msg::before {
  content: "※";
}

.errs {
  width: 100%;
  padding: 20px 5px 20px 5px;
  background-color: rgba(250, 203, 203, 0.31);
  border-left: 3px solid darkred;
  font-size: 1.1em;
  color: darkred;
}
.errs::before {
  content: "※";
}

.height {
  height: 20px;
  background-color: #333;
}

.flex {
  display: flex;
}

.flex__item {
  margin-right: 30px;
}

.table01 input {
  font-size: 17px;
}

.order-nav {
  width: 90%;
}
.order-nav__form {
  width: 50%;
}
.order-nav__btn {
  width: 100%;
}

/* ラジオボタン02 */
.radio02 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 50px 0;
}

.radio02 input {
  display: none;
}

.radio02 label {
  display: block;
  cursor: pointer;
  width: 300px;
  margin: 1px 0 1px 0;
  border-right: 1px solid #d7d7d7;
  background: #e5e5e5;
  color: #555e64;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  transition: 0.2s;
}

.radio02 label:last-of-type {
  border-right: 0px;
}

.radio02 input[type=radio]:checked + label {
  background-color: #1d9cb9;
  color: #fff;
}

@media screen and (min-width: 960px) {
  label {
    width: 40%;
  }
  .content {
    display: flex;
  }
  .content-center {
    align-items: center;
  }
  .content > button {
    margin-right: 20px;
  }
  .content > .btn-a {
    margin-right: 20px;
  }
  .content__text {
    width: 30%;
  }
  .content__text-sub {
    width: 70%;
  }
  .content__text-sub2 {
    width: 100%;
  }
  .confirm dl {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
  }
}
.table01 {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #e1e1e1;
  margin-bottom: 10px;
}
.table01__td1 {
  max-width: 200px;
}
.table01 th, .table01 td {
  border: 1px solid #e1e1e1;
  padding: 10px 15px;
  text-align: left;
}
.table01 th {
  background-color: #edeaea;
  font-weight: bold;
}
.table01 tr.tr01 th {
  background-color: #e0e0e0;
}
.table01 td {
  vertical-align: top;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto; /* Center in the middle of the screen */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* Adjust width as needed */
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.modal-content p {
  font-size: 19px;
}

@media screen and (max-width: 768px) {
  .modal-content {
    width: 90%; /* Increase width for small screens */
    top: 10%;
    transform: translateY(0);
  }
}
#agree-button {
  background-color: #0079dd; /* Blue color */
  color: white;
  padding: 10px 20px; /* Padding inside the button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#agree-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.modal h2 {
  border-bottom: 1px solid #ddd; /* Line under the title */
  padding-bottom: 10px;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.announcement {
  background-color: #f8f9fa; /* 軽い背景色 */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* シャドウ効果 */
}

.announcement .com-title {
  margin-bottom: 10px;
  color: #333; /* タイトルの色 */
}

.product-info h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
}

.product-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between; /* アイテム間に均等なスペースを確保 */
  flex-wrap: wrap; /* 必要に応じて折り返し */
}

.product-item {
  flex: 1 1 auto; /* フレックスアイテムの伸縮性を向上 */
  min-width: 250px; /* フレックスアイテムの最小幅を設定 */
  margin: 10px; /* アイテム間の余白 */
  text-align: center; /* 中央揃え */
}

.product-item img {
  max-width: 100%;
  height: 140px;
  display: block;
  margin: 0 auto 10px; /* 画像を中央揃え */
}/*# sourceMappingURL=style.css.map */