@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Roboto+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

h2 {
  font-weight: 300;
  font-size: 1.2vw;
}

*:focus {
  outline: none;
}

body {
  animation: fadeIn 1.0s ease 0s 1 normal;
  -webkit-animation: fadeIn 1.0s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  width: 100%;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

section {
  width: 100%;
  z-index: 1000;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  word-break: break-all;
}

a img {
  transition: all 0.2s ease;
}

@media screen and (max-width: 767px) {
  section {
    margin-top: 0em;
  }
}
/* icon */
i {
  font-style: normal;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}
.flex .viewmore {
  margin: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.text-18 {
  font-size: 18px;
}

.text-30 {
  font-size: 30px;
}

.w-full {
  width: 100%;
}

.p-10 {
  padding: 10px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-90 {
    padding-top: 90px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  #search_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #search_pc {
    display: none;
  }
  .pc {
    display: none;
  }
}
.pclogo {
  width: 115px;
  width: 100%;
  max-height: 60px;
}

.splogo {
  width: 35%;
  margin-left: 32.5%;
}

.spfootermenu {
  text-align: center;
}

.copyright {
  text-align: center;
}

#container {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

.container {
  max-width: 768px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

article.scrl_sec {
  position: relative;
  z-index: 1000;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-outlined {
  vertical-align: middle;
  margin-bottom: 0.1em;
  color: var(--main-color);
}

.overlay {
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.overlay.is-active {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 99990;
}

.alert_success,
.alert_error {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #A5A3A6;
  text-align: center;
  color: #000;
  padding: 10px 30px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .alert_success,
  .alert_error {
    margin-bottom: 0;
  }
}

.alert_success {
  background-color: #CCFFCC;
}

.alert_error {
  background-color: #FFCCCC;
}

.link_blue {
  color: #4F94E2;
}

.page_mypage_menu {
  --main-color: #ef7e00;
  --sub-color: #fef4de;
  --bg-color: #fef4de;
  --main-text-color: #fff;
  --sub-text-color: #341900;
}

.login_error {
  --bg-color: #fff;
}

body {
  background: var(--bg-color);
  color: var(--sub-text-color);
}

a {
  color: var(--sub-text-color);
}

/* メインカラーのカスタマイズ領域 start
カラーコードのみ変更してください */
.main_color_background,
.navicon,
.navicon:before,
.navicon:after,
.item b,
.pagination li.active a,
.pagination li a:hover,
ul.page-numbers li:has(span.current),
ul.page-numbers li.a:hover,
.line_sec,
.radio::after {
  background: var(--main-color);
  color: var(--main-text-color);
}

.main_color_font,
.form.submitBtn:hover,
.form.resetBtn:hover,
.form.submitBtn:hover,
.form.resetBtn:hover,
.text,
ul.pagination li a,
ul.page-numbers li a {
  color: var(--main-color);
}

.button:hover,
.slide-dots li.slick-active button:before,
.copy_window {
  background-color: var(--main-color);
  color: var(--main-text-color);
  transition: all 0.5s ease-in-out;
}

.menu li {
  color: var(--main-text-color);
}

.pagination li,
ul.page-numbers li {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

ul.page-numbers li span.current ,
ul.page-numbers li span.dots {
  text-align: center;
  display: grid;
}

.viewmore,
.sp_viewmore{
  color: var(--sub-text-color);
}
.btn_white {
  border: 1px solid var(--main-color);
  background-color: #fff;
  color: var(--main-color);
}

.btn_white:hover {
  border-color: var(--main-text-color);
  background: var(--main-color);
  color: var(--main-text-color);
}

.headline {

}

.headline .label {
  color: var(--main-color);
}

.feature_label {
  color: var(--main-color);
}

.headline .jp{
  color: var(--sub-text-color);
}

.contactheadline2 {
  border-bottom: var(--main-color) 4px solid;
  color: var(--sub-text-color);
}

.submit-btn:not([disabled]) {
  border: 1px solid var(--main-text-color);
  background: var(--main-color);
  color: var(--main-text-color);
}
.submit-btn:not([disabled]):hover {
  border-color: var(--main-color);
  background: var(--main-text-color);
  color: var(--main-color);
}

/* メインカラーのカスタマイズ領域 end */
/* サブカラーのカスタマイズ領域 start
カラーコードのみ変更してください */
.sub_color {
  background: var(--sub-color);
  color: var(--sub-text-color);
}

.sec_bg,
.cnt {
  background-color: var(--sub-color);
  color: var(--sub-text-color);
}

/* サブカラーのカスタマイズ領域 end */
/* キービジュアルのカスタマイズ領域 start */
#mainArea {
  background-image: var(--kv);
}

/* キービジュアルのカスタマイズ領域 end */
.card_button_wrap > a:hover .main_color_font {
  border-color: var(--main-text-color);
  background: var(--main-color);
  color: var(--main-text-color);
}

.table th {
  background-color: var(--main-color);
  color: var(--main-text-color);
}
.table td {
  background-color: var(--bg-color);
  color: var(--sub-text-color);
}

.table_btn {
  border: 1px solid var(--main-text-color);
  background: var(--main-color);
  color: var(--main-text-color);
}
.table_btn:hover {
  border-color: var(--main-color);
  background: var(--main-text-color);
  color: var(--main-color);
}

/* for slick */
.slider {
  display: none;
}

.slick-list {
  width: 100%;
}

.slick-slide > div {
  padding-left: 20px;
  padding-right: 20px;
}

.slider.slick-initialized {
  display: block;
}

.slick-dotted {
  padding-bottom: 50px;
}

.slide-dots {
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slide-dots li {
  margin: 0 1vw;
  padding: 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.slide-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slide-dots li button:hover,
.slide-dots li button:focus {
  outline: none;
}

.slide-dots li button:hover:before,
.slide-dots li button:focus:before {
  background-color: rgba(0, 0, 0, 0.5);
}

.slide-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.slide-dots li.slick-active button:before {
  background-color: #000;
}

.slide-arrow {
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 100;
  transition: all 0.2s ease;
}

.slide-arrow:hover {
  background-color: rgb(255, 255, 255);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

.slide-arrow img {
  width: 100%;
  height: auto;
}

.next-arrow {
  right: 0;
}

.slide-arrow img {
  width: 100%;
  height: auto;
}

table {
  border-spacing: 0px;
}

input[type=text]:read-only, textarea:read-only {
  background: #eee !important;
}

select {
  background: url("../images/select.png");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: calc(100% - 8px);
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 0.3em;
  margin-bottom: 1em;
}

.validationForm span {
  margin-top: 1.5em;
  margin-bottom: 2em;
}

a.sns_button_google {
  padding: 0.5em;
  margin: 10px 0;
  display: block;
  color: #000 !important;
  background: #fff;
  text-decoration: none;
  text-align: center;
  text-decoration: none !important;
  width: 100%;
  border: solid 1px #000;
  font-size: 90%;
}

a.sns_button_google:hover {
  background: #ddd;
}

a.sns_button_line {
  padding: 0.5em;
  margin: 10px 0;
  display: block;
  color: #000 !important;
  background: #fff;
  text-decoration: none;
  text-align: center;
  text-decoration: none !important;
  width: 100%;
  border: solid 1px #000;
  font-size: 90%;
}

a.sns_button_line:hover {
  background: #ddd;
}

a.sns_button_facebook {
  padding: 0.5em;
  margin: 10px 0;
  display: block;
  color: #000 !important;
  background: #fff;
  text-decoration: none;
  text-align: center;
  text-decoration: none !important;
  width: 100%;
  border: solid 1px #000;
  font-size: 90%;
}

a.sns_button_facebook:hover {
  background: #ddd;
}

.snsicon {
  width: 20px;
  margin-right: 5px;
  vertical-align: bottom;
}

.forget {
  font-size: 85%;
}

center {
  text-align: left;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.agree_wrap {
  margin-top: 50px;
}

@media screen and (min-width: 1024px) {
  a.sns_button_google {
    padding: 0.5em 2em;
    margin: 10px auto;
    display: inline-block;
    width: 100%;
  }
  a.sns_button_facebook {
    padding: 0.5em 2em;
    margin: 10px auto;
    display: inline-block;
    width: 100%;
  }
  a.sns_button_line {
    padding: 0.5em 2em;
    margin: 10px auto;
    display: inline-block;
    width: 100%;
  }
}
input[type=checkbox] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  vertical-align: -0.3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  left: 7px;
  margin-right: 14px;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 5.5px;
  height: 9px;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  content: "";
}

.agree_wrap .agreeNote {
  padding-left: 20px;
}

.validationForm label {
  /* margin-top: 1em;
  margin-bottom: 1em; */
}

.font-bold {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.w-full {
  width: 100%;
}

.sizewidth {
  padding-left: 1rem;
  padding-right: 1rem;
}

.redlabel {
  border: 1.5px solid #eb0a1e;
  color: #eb0a1e;
  border-radius: 2px;
  margin-left: 8px;
  font-size: 0.65em;
  padding-left: 7px;
  padding-right: 8px;
  padding-bottom: 1px;
  vertical-align: 1.5px;
  background-color: #fff;
  white-space: nowrap;
}

.bluelabel {
  border: 1.5px solid #0070c0;
  color: #0070c0;
  border-radius: 2px;
  margin-left: 8px;
  font-size: 0.65em;
  padding-left: 7px;
  padding-right: 8px;
  padding-bottom: 1px;
  vertical-align: 1.5px;
  background-color: #fff;
  white-space: nowrap;
}

.graylabel {
  border: 1.5px solid #6f6f6f;
  color: #6f6f6f;
  border-radius: 2px;
  margin-left: 8px;
  font-size: 0.65em;
  padding-left: 7px;
  padding-right: 8px;
  padding-bottom: 1px;
  vertical-align: 1.5px;
  background-color: #fff;
  white-space: nowrap;
}

.feedbottom {
  margin-bottom: 1rem;
}

.formsec {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.form-text {
  font-weight: 700;
  margin-bottom: 3px;
}

.text-base {
  font-size: 1.1rem;
}

.text-sub-red {
  --text-opacity: 1;
  color: #d0021b;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
}

.widthhalf {
  width: 50%;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.w-full {
  width: 100%;
}

.text-sm {
  font-size: 0.875rem;
}

.form-input-text {
  border-width: 1px;
  border-style: solid;
  --border-opacity: 1;
  border-color: #444;
  font-size: 0.875rem;
  width: 100%;
  height: 34px;
  line-height: 34px;
  padding: 0 6px;
}

button, input, optgroup, select, textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
  background-color: #fff;
}

button, input {
  overflow: visible;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

.p-left {
  margin-left: 1rem;
}

.max-w-full {
  max-width: 100%;
}

.form-textarea {
  border-width: 1px;
  border-style: solid;
  --border-opacity: 1;
  border-color: #444;
  font-size: 0.875rem;
  width: 100%;
  height: 117px;
  line-height: 22px;
  padding: 6px;
}

button, input, optgroup, select, textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
  overflow: auto;
  border-radius: 0px;
}

.form-input-number {
  border-width: 1px;
  border-style: solid;
  --border-opacity: 1;
  border-color: #444;
  font-size: 0.875rem;
  width: 25%;
  height: 34px;
  line-height: 34px;
  padding: 0 6px;
}

input[type=date] {
  color: #444;
  font-size: 0.875rem;
  line-height: 34px;
  text-align: left;
  width: 100%;
  padding: 0 6px;
  transition: 0.3s;
  border: none;
  border: 1px solid #444;
  height: 34px;
}

.block {
  display: block;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.radio {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.radio::before,
.radio::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 55%;
}

.radio::before {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  left: 7px;
}

.radio::after {
  border-radius: 50%;
  opacity: 0;
  width: 11px;
  height: 11px;
  left: 9.7px;
}

input:checked + .radio::after {
  opacity: 1;
}

.submit-btn {
  cursor: pointer;
  outline: none;
  appearance: none;
  padding: 8px 24px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 1rem;
  margin-top: 1rem;
  transition: 0.3s;
}

.submit-btn[disabled] {
  border: 1px solid #ccc;
  background-color: #ccc;
  cursor: not-allowed;
  color: #fff;
}

.agree {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: block;
}

.error {
  font-size: 0.875rem;
  color: #d0021b;
  margin-top: 0 !important;
  margin-bottom: 3px !important;
  display: block;
}

.contactheadline {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: block;
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding-left: 1rem;
}

.contactheadline2 {
  background: transparent;
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
  display: block;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.search_input_form {
  margin-bottom: 40px;
}

.search_input {
  height: 34px;
  background-color: #fff;
  border: 1px solid #444;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.search_input_field {
  width: 100%;
  height: 100%;
  text-indent: 10px;
}

.search_submit {
  height: 100%;
  padding-right: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.postal_code_input_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.postal_code_input_wrap .postal_code_btn {
  white-space: nowrap;
}

.pw_input_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.password_toggle_btn {
  width: 22px;
  background-color: transparent;
}

.pass {
  background-color: #d0021b;
  color: #fff;
  transition: all 0.5s ease-in-out;
  border: 2px solid #d0021b;
  border-radius: 20px;
  text-align: center;
  width: 55%;
  vertical-align: bottom;
  font-size: 13px;
  color: #fff;
  padding-top: 0.2em;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  display: inline-table;
  transition: all 0.5s ease-in-out;
}
.pass:hover {
  background: #fff;
  color: #d0021b;
}

@media only screen and (max-width: 767px) {
  #top .pass {
    width: 46%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #top .pass {
    width: 30%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  #top .pass {
    width: 20%;
  }
}
@media only screen and (min-width: 1281px) {
  #top .pass {
    width: 15%;
  }
}
.input_file_btn {
  width: fit-content;
  cursor: pointer;
  background-color: #fff;
  padding: 10px;
}

/* for header */
main {
  margin-top: 90px;
}

header {
  z-index: 9999;
}
header a {
  color: #000;
}

#headerArea {
  width: 100%;
  height: 90px;
  background: #fff;
  z-index: 9999;
  position: fixed;
  
  top: 0;
  left: 0;
  right: 0;
}

.titleArea {
  width: 100%;
  height: 90px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.titleArea nav {
  line-height: 1;
}

nav {
  font-size: 90%;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 0px 5px;
}

.logo {
  height: 60px;
}

@media only screen and (max-width: 767px) {
  main {
    margin-top: 60px;
  }
  
  #headerArea {
    height: 60px;
  }

  .titleArea {
    height: 60px;
  }

  .logo {
    height: 40px;
  }

  .pt-90 {
    padding-top: 60px;
}
}

/* for footer */
.titleAreafoot {
  width: 100%;
  height: 60px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  padding: 7%;
  padding-top: 3%;
  padding-bottom: 3%;
  background-color: #fff;
  color: #000;
}
footer a {
  color: #000;
}

@media only screen and (max-width: 767px) {
  .titleAreafoot {
    justify-content: center;
  }
}
/* headline */
.headline {
  text-align: center;
  line-height: 1;
  max-width: 570px;
  padding: 1.5em 0em;
  margin: 0 auto 2em;
  display: block;
  left: 0;
  right: 0;
  font-size: 1.2vw;
  font-weight: 300;
}

.list_headline {
  max-width: 1280px;
  width: 90vw;
  margin: 0 auto 0em;
  padding: 1.5em 0 0 0;
  line-height: 1.5 !important;
}

.headline .label {
  display: block;
  padding-bottom: 10px;
  word-wrap: break-word;
  word-break: break-all;
  font-weight: 600;
  font-size: 1.8rem;
}

.feature_label {
  display: block;
  padding-bottom: 10px;
  word-wrap: break-word;
  word-break: break-all;
  font-weight: 600;
  font-size: 1.8rem;
}

.headline .jp {
  font-size: 17px;
  line-height: 14px !important;
  display: block;
  word-wrap: break-word;
  font-weight: 700;
}

.list_jp{
  padding-top: 1.5em;
}

.text {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  margin: 4em auto 2em;
}

.sec_bg {
  padding-bottom: 2em;
}

.back_link.cntBody {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

#top .feature_lheadline .jp {
  font-size: 14px;
  font-weight: 400;
  min-height: 40px;
}

@media screen and (max-width: 767px) {
  .headline .label {
    font-size: 2rem;
    font-weight: 800;
  }
  .feature_label {
    font-size: 18px;
    font-weight: 800;
  }
  .headline .jp {
    font-size: 14px;
  }
  #main_title .catch_en {
    font-size: 2.8vw;
  }
  .en {
    font-size: 14px;
  }
  .back_link.cntBody {
    width: 93%;
    font-size: 14px;
  }
  .list_headline {
    padding-top: 20px;
  }
}
/* for list */
.cntBody {
  width: 90vw;
  max-width: 1280px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.list {
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 4%;
  padding-bottom: 5vh;
}

.listitem {
  width: 22%;
}
.listitem.inline-block:not(:nth-of-type(4n+1)) {
  margin-right: 3.8%;
}

.list article.item img,
.list_item_img {
  height: auto;
  width: 100%;
}

.list article.item h3,
.list_item_title {
  font-size: 14px;
  margin: 0.5em 0;
}

.list article.item p,
.list_item_text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0.5em 0;
  height: 4.5em;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .listitem {
    width: 44% !important;
  }
  .cntBody {
    width: 80vw;
  }
  .list {
    gap: 20px 12%;
  }
  .list {
    margin-top: 7%;
  }
}
/* benefits */
.item b {
  padding: 1.5% 4%;
  font-size: 80%;
  display: inline-block;
  width: 100%;
}

/* charity */
.charity_tags {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 10px;
  aspect-ratio: 277/22.8;
  width: 100%;
  max-height: 38px;
}

.charity {
  max-width: calc(100% - 20px);
  height: 100%;
  display: flex;
  gap: 5px;
}

.charity_img {
  max-width: 100%;
  height: 100%;
  width: auto;
}

.annotation_icon {
  height: 15px;
  width: 15px;
  font-size: 10px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.ranking_num {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}


@media screen and (max-width: 768px) {
  .ranking_num {
    font-size: 20px;
  }
}
.link_card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.link_card_item {
  width: calc(50% - 15px);
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  padding: 20px;
}
.link_card_item .icons {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.link_card_item:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: var(--main-text-color);
}

@media screen and (max-width: 767px) {
  .link_card {
    gap: 20px;
  }
  .link_card_item {
    width: 100%;
  }
}
.table {
  border-collapse: collapse;
  overflow-x: auto;
}
.table th,
.table td {
  /* border: 1px solid #000; */
  padding: 5px 10px;
}

.table_btn {
  padding: 5px 10px;
  transition: 0.5s;
  white-space: nowrap;
}

.over_table_wrap {
  width: 100%;
  overflow-x: auto;
}
.over_table_wrap th {
  white-space: nowrap;
}
.over_table_wrap .form-input-text {
  min-width: 200px;
}

@media screen and (max-width: 767px) {
  .table_to_block {
    display: block;
  }
  .table_to_block tr,
  .table_to_block th,
  .table_to_block td,
  .table_to_block thead,
  .table_to_block tbody,
  .table_to_block tfoot {
    display: block;
  }
  .table_to_block.table td {
    padding: 1rem 1rem;
  }
  .table_to_block.table th {
    /* border-bottom: none;
    border-top: none; */
  }
}

.nav_list {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.icon_admin svg {
  font-size: 34px;
  padding-right: 5px;
}

@media screen and (max-width: 767px) {
 .nav_list {
    margin-right: 5px;
 }

  .icon_admin {
    display: inline-block;
    text-align: center;
    }
  .icon_admin svg {
    font-size: 20px;
    padding: 4px 0 0;
  }

  .icon_admin span,
  #search_sp span {
    display: block;
    font-size: 11px;
    margin-top: 5px;
  }
}

/* hamburger menu*/
:root {
  --background-navbar: rgba(255, 255, 255, 1);
}

.menu {
  width: 100vw;
  height: 101vh;
  clear: both;
  transition: 0.6192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 99997;
  background-color: rgba(0, 0, 0, 0.5);
}

.menu .menu-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
}

.menu ul {
  list-style: none;
}

.menu .menu_cont {
  width: 90vw;
  max-width: 1060px;
  height: auto;
  max-height: 90vh;
  overflow-y: scroll;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  background: var(--background-navbar);
  border-radius: 10px;
  border: solid 10px var(--background-navbar);
}

/* hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: translate(0, -50%) scale(1, 1);
  transform-origin: top;
  transition: 0.6192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 14.4px;
  text-transform: capitalize;
  color: #000;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  padding: 30px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu li.top {
  border-bottom: 1px solid #b3b3b3;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.6192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 5px 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu_search {
  position: relative;
}

.menu_search .menu-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.menu_search input {
  width: 86%;
}

@media screen and (max-width: 850px) {
  .menu_search input {
    width: 80%;
  }
}

.menu_category dl {
  color: var(--main-color);
  font-weight: bold;
}

.menu_category dt {
  margin-bottom: 20px;
  font-size: 20px;
}

.menu_category ul {
  display: flex;
  flex-wrap: wrap;
}

.menu_category li {
  width: calc(88% / 6);
  padding: 0;
  margin: 1%;
  text-align: center;
  background-color: color-mix(in srgb, var(--main-color) 10%, white);
}

.menu_category li a {
  display: block;
  padding: 0 0 1em;
}

.menu_category img {
  width: 50%;
}

.menu_category p {
  font-size: 13px;
}

.menu_other div {
  width: 100%;
  display: block;
  letter-spacing: -0.4em;
}

.menu_other div .menu_other_link {
  width: 33.333%;
  padding: 0.5% 1%;
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
}

.menu_other div .menu_other_link a {
  padding: 1em;
  display: block;
  border: 1px solid #b3b3b3;
  text-align: center;
}

.menu_other .link_beginner a {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.menu_other .link_beginner span {
  padding-left: 1.5em;
  display: inline-block;
  color: var(--main-text-color);
  position: relative;
}

.menu_other .link_beginner span::before{
  content: "";
  width: 2em;
  height: 2em;
  background: url("../images/icon_beginner.svg") no-repeat 50% 50%;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -1em;
  transform: translate(0, -50%);
}

.menu_other .link_icon_fa span {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}

.menu_other svg {
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: -0.8em;
  transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
  .menu .menu_cont {
   border-radius: 5px;
   border: none;
  }

  .menu li {
    margin: 0 15px;
  }

  .menu_search input {
    width: 70%;
  }

  .menu_category dt {
    font-size: 15px;
  }

  .menu_category li {
    width: calc(94% / 3);
    margin: 1%;
  }

  .menu_category p {
    font-size: 11px;
  }

  .menu_other div .menu_other_link {
    width: 100%;
    padding: 0;
  }

  .menu_other div .menu_other_link a {
    padding: 1em;
    text-align: left;
    border: none;
    border-bottom: dashed 1px #b3b3b3;
  }

  .menu_other .link_beginner span {
    padding-left: 2em;
  }

  .menu_other .link_beginner span::before {
    left: -0.2em;
  }

  .menu_other .link_icon_fa span {
    padding-left: 2em;
  }

  .menu_other svg {
    left: 0;
  }
}

@media screen and (max-width: 375px) {
  .menu_search input {
    width: 60%;
  }
}

.navicon {
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.6192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1308s;
  z-index: 999;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: 0.6192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1308s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* hamburger menu anime*/
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1308s;
}

.menu_search .navicon {
  display: block;
  height: 6px;
  width: 40px;
  position: relative;
  transition: 0.6192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1308s;
  z-index: 999;
}

.menu_search .navicon:before,
.menu_search .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
}

.menu_search .navicon:before {
  top: 0px;
  transform: rotate(-45deg);
}

.menu_search .navicon:after {
  bottom: 0px;
  transform: rotate(45deg);}

.menu_search .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1308s;
}

/* search */
.search_container {
  box-sizing: border-box;
}

.search_container input[type=text] {
  background: #eeeeee;
  border: none;
  height: 35px;
  padding-left: 10px;
  color: var(--sub-text-color);
}

.search_container input[type=text]:focus {
  outline: 0;
}

.search_container input[type=submit] {
  cursor: pointer;
  font-family: FontAwesome;
  border: none;
  color: #fff;
  outline: none;
  width: 3em;
  height: 35px;
  margin-left: -1%;
}

@media screen and (max-width: 767px) {
  #search_sp {
    cursor: pointer;
    font-family: FontAwesome;
    border: none;
    outline: none;
    height: 30px;
    font-size: 19.8px;
    margin-left: 10px;
  }
}
.charity_modal {
  max-width: 80vw;
  max-height: 80vh;
  width: 0;
  border-radius: 20px;
  background-color: #fff;
  padding: 0;
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  opacity: 0;
}
.charity_modal.is-active {
  width: 600px;
  padding: 25px 30px;
  z-index: 99999;
  opacity: 1;
}

.charity_modal_close_btn {
  cursor: pointer;
  display: block;
  width: 16px;
  height: 15px;
  background-color: red;
  position: absolute;
  top: 10px;
  right: 20px;
}
.charity_modal_close_btn:before, .charity_modal_close_btn:after {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
  position: absolute;
}
.charity_modal_close_btn:before {
  top: 7px;
  left: 3px;
  transform: rotateZ(45deg);
}
.charity_modal_close_btn:after {
  top: 7px;
  left: 3px;
  transform: rotateZ(-45deg);
}

.charity_type_list {
  list-style: none;
}

.charity_type_list_item {
  font-size: 14px;
}
.charity_type_list_item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .charity_type_list_item {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}

.charity_type_img {
  width: 90px;
  height: auto;
}

.page_home {
  background-color: #fff;
}

/* for kv */
#mainArea {
  width: 100vw;
  height: 25vw;
  max-height: 800px;
  position: relative;
  z-index: 100;
}

#mainArea {
  background-size: cover;
}

#main {
  margin: 0;
}

#main .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#main_title {
  color: #fff;
  width: 100vw;
  max-width: 1280px;
  height: 25vw;
  max-height: 800px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

#main_title .catch_jp {
  font-size: 3vw;
  font-weight: 300;
  letter-spacing: 0.2em;
  padding-left: 0.4em;
  margin-bottom: 0.2em;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

#main_title .catch_en {
  font-size: 1.5vw;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

#main p.note {
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  position: absolute;
  bottom: 5px;
  right: 0;
}

#main_title span {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  #main_title .catch_jp {
    font-size: 4.5vw;
  }
}
/* view more */
.viewmore {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: fit-content;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  transition: 0.5s;
  margin-top: 2em;
  margin-bottom: 2em;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .viewmore {
    padding: 0.5rem;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .viewmore {
    padding: 0.5rem;
    font-size: 14px;
  }
}
.home_area {
  padding: 0vh 0 5vh;
}

/* for info */
/* for owners select */
/* for pickup */
/* for selectlocal */
/* for bigbanner */
/* for sort */
#sortArea {
  padding: 5vh 0 5vh;
}

#sort ul {
  width: 100vw;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 2%;
}

#sort ul li {
  line-height: 1;
  width: 23%;
  min-width: 240px;
  list-style: none;
}

#sort ul li a {
  text-decoration: none;
  width: 160px;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
}

#sort ul li a:hover {
  background: #fff;
  transition: all 0.5s ease-in-out;
}

#sort ul li .txt {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

#sort ul li .txt .en {
  color: #999;
  font-size: 75%;
  margin-top: 0.5em;
  margin-bottom: 1em;
  display: block;
}

@media only screen and (max-width: 767px) {
  #sort ul li {
    width: 48.2%;
    min-width: 0px;
  }
  #sort ul {
    padding-left: 12px;
    gap: 40px 0%;
  }
  #sort ul li .txt {
    font-size: 12px;
  }
}
/* for ad */
#adArea {
  padding: 0vh 15% 5vh;
}

@media screen and (min-width: 1024px) {
  #adArea {
    padding: 0vh 15% 5vh;
  }
}
/* 2colmn */
.column_2 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .column_2 > div {
    width: 100%;
    padding: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .column_2 > div {
    width: 50%;
    padding: 2vw 6vw;
  }
}
/* for List Page */
.list_page .scrl_sec {
  padding: 50px 0 50px;
}

.list_page .headline {
  position: static;
}

.list_page .list {
  opacity: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px 4%;
}

.list_page .list .item {
  width: 22%;
  max-width: 320px;
}

.pagination,
ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px 0.5%;
  margin: 5vh auto 0;
  list-style: none;
  padding-bottom: 5vh;
}

.pagination li,
ul.page-numbers li {
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 24px;
}

.pagination li a,
ul.page-numbers li a {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1em;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.pagination li.active a,
.pagination li a:hover,
ul.page-numbers li:has(span.current),
ul.page-numbers li:has(span.dots),
ul.page-numbers li a:hover {
  color: #fff;
  background: #333;
}

#detail {
  width: 100vw;
  padding-left: calc(50vw - 640px);
  padding-right: calc(50vw - 640px);
  padding: 0 25%;
}

.headline.detailsize {
  font-size: 1.8rem;
}

.product_title {
  /* text-align: center; */
}

.product_label {
  /* font-size: 20px; */
  font-size: 2.8rem;
  font-weight: bold;
}

.label.detailsize {
  padding-bottom: 0px;
  font-weight: 600;
  font-size: 1.8rem;
}
.product_highlight strong{
  display:inline;
  font-size: 1.3rem;
  font-weight: 500;
  background-image: linear-gradient(90deg, #ffff66 0%, #ffff66 100%);
  background-size: 100% 0.5em;
  background-repeat: no-repeat;
  background-position: 0 90%;
}

@media screen and (max-width: 767px) {
  .label.detailsize {
    font-weight: 800;
    font-size: 1.6rem;
  }

  
  .product_title {
    /* text-align: center; */
  }
  .product_highlight strong{
    display:inline;
    font-size: 1.2rem;
    font-weight: 500;
    background-image: linear-gradient(90deg, #ffff66 0%, #ffff66 100%);
    background-size: 100% 0.5em;
    background-repeat: no-repeat;
    background-position: 0 90%;
  }
}


#detail .headline {
  margin-bottom: 0;
}

#detail article.scrl_sec {
  padding-top: 1em;
  margin-bottom: 1em;
}

#detail #slider .slick-slide > div {
  padding-left: 0;
  padding-right: 0;
}
#detail #slider .slick-slide img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#detail #thumbs .slick-slide > div {
  padding-left: 10px;
  padding-right: 10px;
}
#detail #thumbs figure {
  padding: 0;
}

#detail .thumbs img {
  box-sizing: border-box;
}

#detail .thumbs {
  max-width: 100%;
  margin: 20px auto;
}

#detail .thumbs .slick-slide {
  padding: 0 5px;
}

#detail .thumbs .slick-current img {
  opacity: 1;
}

#detail .slide-arrow:hover {
  background-color: rgb(255, 255, 255);
}

#detail .prev-arrow {
  left: 0px;
}

#detail .next-arrow {
  right: 0px;
}

.line_sec {
  display: block;
  width: 0%;
  height: 1px;
  margin: 0 auto 20px;
}

.main .line_sec {
  height: 2px;
  width: 90%;
}

#detail .cnt {
  font-size: 1.1rem;
  padding: 0em 2em 2em 2em;
  line-height:1.6;
}

.card_button_wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
}
.card_button_wrap > a {
  max-width: 222px;
}

.button {
  border: 2px solid;
  border-radius: 20px;
  text-align: center;
  background: #fff;
  vertical-align: bottom;
  font-size: 13px;
  padding-top: 0.2em;
  margin: auto;
}

.center {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.button:hover {
  transition: all 0.5s ease-in-out;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .slide-arrow {
    bottom: 0px;
  }
  #detail {
    padding: 0 6%;
  }
  .headline.detailsize {
    max-width: initial;
    margin: 0;
    font-size: 1.6rem;
  }
  #detail .headline.detailsize {
    padding: 1em 0;
  }
  .product_label {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #detail .cnt {
    font-size: 1rem;
  }
  .line_sec {
    margin: 0 auto 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #detail {
    padding: 0 15%;
  }
  .headline.detailsize {
    max-width: initial;
  }
  #detail .headline.detailsize {
    padding: 2em 0;
  }
}
.flex {
  display: flex;
}

.check_window {
  display: none;
}

.bg_window {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
}

.bg_window:hover {
  transition: 0.5s;
}

#copy {
  display: none;
}

.check_window:checked + .bg_window {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s;
}

.window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-height: 90%;
  background-color: #fff;
  overflow-y: auto;
}

.charity_detail_wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.charity_detail {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.charity_detail img {
  max-width: 100%;
  width: auto;
}

@media screen and (max-width: 767px) {
  .window {
    width: calc(100% - 20px);
  }
  .charity_detail {
    height: 27px;
  }
  #detail #thumbs .slick-slide > div {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .window {
    width: 50%;
  }
  .charity_detail {
    height: 44px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .window {
    width: 30%;
  }
  .charity_detail {
    height: 50px;
  }
}
@media screen and (min-width: 1281px) {
  .window {
    width: 30%;
  }
  .charity_detail {
    height: 50px;
  }
}
.copy_window {
  border: none;
  outline: none;
  width: 20%;
  color: #fff;
  padding: 15px;
  text-align: center;
}

.window_content {
  display: table;
  margin: 0px auto;
  padding: 15px;
}

/* navbar */
/* navbar text */
/* for plus */
/*# sourceMappingURL=style.css.map */





/* 個別設定領域 */

/*************************************
 プライバシーポリシー, 利用規約
**************************************/
.privacy_policy h3,
.terms_of_service h3{
  display: block;
  word-wrap: break-word;
  word-break: break-all;
  padding: 1.4rem 0rem;

  line-height: 28px;
  font-weight: 600;
  font-size: 1.8rem;

  color: var(--main-color);
}

.privacy_policy section,
.terms_of_service section{
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .privacy_policy h3,
  .terms_of_service h3 {
    line-height: 32px;
    font-weight: 800;
    font-size: 2rem;
    margin: 0 auto;
  }

  .privacy_policy section,
  .terms_of_service section{
    padding-top: 30px;
  }
}

.privacy_policy ol,
.terms_of_service ol{
  display: block;
  list-style-type: decimal;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}
.privacy_policy ol ol,
.terms_of_service ol ol{
  margin-block-start: 0px;
  margin-block-end: 0px;
}
.privacy_policy li,
.terms_of_service li{
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}
.privacy_policy .container,
.terms_of_service .container{
  width: 55%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .privacy_policy .container,
  .terms_of_service .container {
    width: 90%;
  }
}

.privacy_policy p,
.terms_of_service p{
  margin-top: 1rem;
}


/*************************************
 入力項目
**************************************/
input[type="file"]{ 
  width: 100%;
  background-color: transparent;
}

#hwp-withdrawal-main ul{
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  unicode-bidi: isolate;
}

input:disabled {
  background: #eee !important;
}

.feedbottom input:read-only {
  background: #eee !important;
}

.multiple_checkbox {
  margin: 0;
}

.vertical_checkbox label {
  margin-top: 1em;
  margin-bottom: 1em;
}


/*************************************
 テーブルタグ
**************************************/
.table {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.table th,
.table td {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}


/*************************************
 メンバー詳細ページ
**************************************/
#hcc-detail-mask {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

#hcc-detail-mask li{
  list-style:none
}

.hcc-detail-hidden {
  display: none;
}

#hcc-detail-modal {
  background: #fff;
  width: 50%;
  padding: 24px;
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 2;
  overflow-y: scroll;
  max-height:80%;
}

.table td {
  background-color: white;
}

.table th.head30 {
  width: 30%;
}

#hcc-detail-mask {
  place-items: center;
}

@media screen and (max-width: 767px) {
  #hcc-detail-modal {
    width: 90%;
  }
}

.bc-white{
  background-color: #fff;
}


/*************************************
 TOPページ用
**************************************/
#top .home_area {
  padding: 0vh 0 2vw !important;
}

.js-slider_big_picture {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 625px;
}
.js-slider_big_picture.slick-initialized {
  visibility: visible;
  opacity: 1;
  height: unset;
}
@media screen and (max-width: 1920px) {
  .js-slider_big_picture {
    height: 475px;
  }
}
@media screen and (max-width: 1600px) {
  .js-slider_big_picture {
    height: 400px;
  }
}
@media screen and (max-width: 1440px) {
  .js-slider_big_picture {
    height: 364px;
  }
}
@media screen and (max-width: 1375px) {
  .js-slider_big_picture {
    height: 348px;
  }
}
@media screen and (max-width: 1280px) {
  .js-slider_big_picture {
    height: 326px;
  }
}
@media screen and (max-width: 1024px) {
  .js-slider_big_picture {
    height: 266px;
  }
}
@media screen and (max-width: 850px) {
  .js-slider_big_picture {
    height: 226px;
  }
}
@media screen and (max-width: 767px) {
  .js-slider_big_picture {
    height: 206px;
  }
}
@media screen and (max-width: 610px) {
  .js-slider_big_picture {
    height: 434px;
  }
}
@media screen and (max-width: 568px) {
  .js-slider_big_picture {
    height: 406px;
  }
}
@media screen and (max-width: 430px) {
  .js-slider_big_picture {
    height: 314px;
  }
}
@media screen and (max-width: 390px) {
  .js-slider_big_picture {
    height: 288px;
  }
}
@media screen and (max-width: 360px) {
  .js-slider_big_picture {
    height: 268px;
  }
}

#top .slick-slide > div {
  padding-left: 0;
  padding-right: 40px;
}

#top .js-slider_pc_double .slick-slide > div {
  padding-right: 20px;
  padding-left: 20px;
}

#top .js-slider_big_picture .slick-slide > div {
  padding-right: 20px;
  padding-left: 20px;
}

#top .js-slider .slick-track,
#top .js-slider_sp_double .slick-track {
  margin-left: 0;
  margin-right: 0;
}

#top .slick-dotted {
  padding-bottom: 50px !important;
}

#top .js-slider .slide-dots,
#top .js-slider_sp_double .slide-dots {
  padding-right: 13%;
}

@media screen and (max-width: 767px) {
  #top .js-slider_pc_double .slick-slide > div,
  #top .js-slider .slick-slide > div {
    padding-left: 20px;
    padding-right: 20px;
  }

  #top .js-slider_big_picture .slick-slide > div {
    padding-left: 20px;
    padding-right: 20px;
  }

  #top .js-slider_sp_double .slick-slide > div {
    padding-left: 4%;
    padding-right: 4%;
  }

  #top .slide-dots {
    padding-right: 0 !important;
  }

  #top .js-slider .slick-track,
  #top .js-slider_sp_double .slick-track {
    margin-left: auto;
    margin-right: auto;
  }
}

#top .js-slider .prev-arrow,
#top .js-slider_sp_double .prev-arrow {
  margin-left: 11%;
}

@media screen and (max-width: 767px) {
  #top .prev-arrow {
    margin-left: 0 !important;
  }
}

#top  ul.page-numbers {
  padding-bottom: 0;
}

#top article.scrl_sec {
  padding-top: 0.5vw;
}

#top .headline {
  max-width: initial;
  width: 80%;
  min-height: 58px;
  padding: 1.5em 1rem 0.8rem;
  background-size: cover;
  display: flex !important;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 21px;
  text-align:left
}

#top .feature_lheadline {
  max-width: initial;
  width: 80%;
  min-height: 58px;
  padding: 1.5em 1rem 0.8rem;
  background-size: cover;
  display: flex !important;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 21px;
  text-align:left
}

#top .feature .headline {
  padding: 1.5em 1rem 0.6rem;
}

#top .feature .feature_lheadline {
  padding: 1.5em 1rem 0.6rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

#top .feature_lheadline .feature_label {
  padding-bottom: 0;
}

#top .headline_title {
  flex: 1 1 80%;
}

@media only screen and (max-width: 767px) {
  #top .headline {
    text-align: center;
    margin: 0 auto;
  }

  #top .feature_lheadline {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
}

#top .list{
  padding-bottom: 0;
}

#top .js-slider.list,
#top .js-slider_sp_double.list{
  padding-left: 11%;
}

@media only screen and (max-width: 767px) {
  #top .list{
    gap: 0;
    margin-top: 0;
  }

  #top .js-slider.list {
    gap: 20px 10%;
  }

  .cntBody.list{
    gap: 10px 0;
    width: 93%;
    justify-content: space-between;
  }

  #top .js-slider_sp_double.list {
    gap: 20px 10px;
    width: 100%;
  }

  #top .js-slider.list, 
  #top .js-slider_sp_double.list {
    padding-left: 0 !important;
  }

  #top .listitem {
    width: 50% !important;
  }

  .cntBody .listitem,
  #top .cntBody .listitem {
    width: 48% !important;
  }

  #top article.scrl_sec {
    padding-top: 0 !important;
  }
}

/* view more */
#top .viewmore {
  padding: 0.8rem 3rem;
  font-size: 14px;
  align-self: flex-start;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 0;
}


.sp_viewmore {
  display: none;
}

@media only screen and (max-width: 767px) {
  #top .viewmore {
    display: none;
  }

  .sp_viewmore {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: fit-content;
    margin: auto;
    font-weight: bold;
    transition: 0.5s;
    padding: 0.5rem;
    font-size: 14px;
  }
}

.home_area {
  padding: 0vh 0 5vw;
}

.big_picture {
  padding-top: 3rem;
}

@media only screen and (max-width: 767px) {
  .big_picture {
    margin-bottom: 20px;
  }
}

.sec_main{
  background-color: color-mix(in srgb, var(--main-color) 10%, white) !important;
  padding-bottom: 2em;
}

/* （オーナー向け）商品・サービスカテゴリ― */
#sort_for_owner ul {
  width: 100vw;
  max-width: 1080px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px 2%;
  justify-content: flex-start;
  margin-left:11%
}

#sort_for_owner ul li {
  line-height: 1;
  width: 30%;
  min-width: 150px;
  list-style: none;
}

#sort_for_owner ul li a {
  text-decoration: none;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  #sort_for_owner ul {
    display: block;
    max-width: 80%;
    padding-top: 15px;
    margin: 0 auto;
    justify-content: center;
  }

  #sort_for_owner ul li {
    width: 100%;
  } 

  #sort_for_owner ul li a {
    padding-bottom: 16px;
  }

}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #sort_for_owner ul li {
    width: 40%;
  } 
}

/* コミュニティからのお知らせ */
#top .info_owner{
  max-width: 80%;
  margin-left: 11%;
}

.youtube_url > p {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube_url > p > iframe {
  width: 100%;
  height: 100%;
}

.youtube_url > iframe + p {
  width: auto; /* またはスタイルを適用しない設定 */
  aspect-ratio: auto;
}

/* オーナー用特集スライダー */
.owner-feature-text-title{
  font-size: 1.4rem;
}

@media only screen and (max-width: 1066px) {
  .owner-feature-text-title{
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 966px) {
  .owner-feature-text-title{
    font-size: 1rem;
  }
}
@media only screen and (max-width: 862px) {
  .owner-feature-text-title{
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 766px) {
  .owner-feature-text-title{
    font-size: 1.4rem;
  }
}


/* 誕生日寄付 */
.birthday_donation{
  display: flex;
  margin-left: 11%;
  justify-content: flex-start;
  gap: 2%;
}

.birthday_donation_image{
  width: 0;
  flex-grow: 1;
}

.birthday_donation_txt{
  padding-right: 30px;
  width: 0;
  flex-grow: 2;
}

.birthday_donation_headline{
  color: #000000;
  background-color: #fff;
  padding: 10px 0;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  width: 50%;
  margin-bottom: 10px;
  font-family: serif;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .birthday_donation_txt{
    font-size: 15px;
  }
  
  .birthday_donation_headline{
    font-size: 13px;
  }

}

@media only screen and (max-width: 768px){
  .birthday_donation{
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
    gap: 10px;
    margin: 0 10%;
    padding-bottom: 16px;
  }
  
  .birthday_donation_image{
    width: 100%;
  }

  .birthday_donation_txt{
    width: 100%;
    padding-right: 0;
    font-size: 14px;
  }
  
  .birthday_donation_headline{
    padding: 10px 0;
    font-size: 15px;
    width: 100%;
    font-weight: 700;
  }
}

/* B2C・B2B商品一覧（URLフラグメント対応） */
#b2c_a_services:target,
#b2b_services:target {
  scroll-margin-top: 60px;
}



/*************************************
  商品詳細
**************************************/
.document_link_button {
  white-space: nowrap;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

/** YouTube URL関連 */
.youtube_url {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube_url iframe {
  width: 100%;
  height: 100%;
}


/*************************************
 ロゴ画像用
**************************************/
@media screen and (max-width: 767px) {
  .listitem .charity_tags {
    aspect-ratio: 277/38;
  }
}

.list article.item .charity_img{
  height: 100%;
  width: auto;
}


/*************************************
  新規登録
**************************************/
@media only screen and (max-width: 767px) {
  #hwp-regist-main .alert_success,
  #hwp-regist-main .alert_error {
    margin-bottom: 40px;
  }
}


/*************************************
  お問い合わせ
**************************************/
@media only screen and (max-width: 767px) {
  .general_contact_form .alert_success,
  .general_contact_form .alert_error {
    margin-bottom: 40px;
  }
}




/*************************************
  Contact Form 7 対応
**************************************/
.wpcf7-form a{
  color: #4F94E2;
  text-decoration: underline;
}

.wpcf7-text ,
.wpcf7-select,
.wpcf7-number {
  border-width: 1px;
  border-style: solid;
  --border-opacity: 1;
  border-color: #444;
  font-size: 0.875rem;
  width: 100%;
  height: 34px;
  line-height: 34px;
  padding: 0 6px;
}

.wpcf7-textarea {
  border-width: 1px;
  border-style: solid;
  --border-opacity: 1;
  border-color: #444;
  font-size: 0.875rem;
  width: 100%;
  height: 117px;
  line-height: 22px;
  padding: 6px;
}

.wpcf7 label {
  font-weight: 700;
  margin-bottom: 3px;
}

.wpcf7-form-control-wrap{
  margin-top: 3px;
  display: block;
}

.wpcf7-radio .wpcf7-list-item{
  margin: 0;
  padding-right: 30px;
  margin-bottom: 30px;
}

.wpcf7-radio input[type=radio] {
  position: relative;
  cursor: pointer;
  padding-left: 0;
}

.wpcf7-submit:not([disabled]) {
  border: 1px solid var(--main-text-color);
  background: var(--main-color);
  color: var(--main-text-color);
}
.wpcf7-submit:not([disabled]):hover {
  border-color: var(--main-color);
  background: var(--main-text-color);
  color: var(--main-color);
}

.wpcf7-submit {
  cursor: pointer;
  outline: none;
  appearance: none;
  padding: 8px 24px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 1rem;
  margin-top: 1rem;
  transition: 0.3s;
}

.wpcf7-submit[disabled] {
  border: 1px solid #ccc;
  background-color: #ccc;
  cursor: not-allowed;
  color: #fff;
}


#detail #service_elementor h6 {
  font-size: 13px;
}

#detail #service_elementor h6 a{
  border: 2px solid;
  border-radius: 20px;
  text-align: center;
  background: #fff;
  vertical-align: bottom;
  padding-top: 0.5em;
  padding-bottom: 0.7em;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin: auto;
  color: var(--main-color);
}
#detail #service_elementor .elementor-widget-container h2.elementor-heading-title{
  display: none;
}

#detail #service_elementor .elementor-widget-container h3.elementor-heading-title{
  padding: 1.5rem 0;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.8rem;
  word-wrap: break-word;
  word-break: break-all;
}



/*************************************
  お届け先管理機能
**************************************/
.hwp-delivery_address-btn{
  border: 1px solid var(--main-color);
  background-color: #fff;
  color: var(--main-color);
}
.hwp-delivery_address-btn:hover{
  border-color: var(--main-text-color);
  background: var(--main-color);
  color: var(--main-text-color);
}

.hwp-delivery_address-center-btn {
  margin: auto;  
}

.hwp-delivery_address-btn{
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: fit-content;
  padding: 1rem 4rem;
  font-weight: bold;
  transition: 0.5s;
  background: #fff;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media only screen and (max-width: 1023px) {

  .hwp-delivery_address-btn{
    padding: 0.5rem;
    font-size: 14px;
  }
}


/*************************************
  その他部品
**************************************/
.hwp-form-errmsg {
  font-size: 0.875rem;
  color: #d0021b;
  margin-top: 0 !important;
  margin-bottom: 3px !important;
  display: block;
}

.panel.is-show {
  display: block;
}

.panel {
  display: none;
}

/*************************************
  ログインページ
**************************************/
.login-Content-title {
  display: flex;
  justify-content: center;
  font-size: 30px;
  margin-top: 20px;
}

.login-Content-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 22px;
  font-size: 1.1rem;
  text-align: center;
}

.login-slider {
  margin-top: 20px;
}

/* サービスメニュー start */
.fixed-category {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
}

.is-category #headerArea {
    position: relative !important;
}

.is-category main {
  margin-top: 0;
}

#category_menu {
  background: #fff;
  width: 100%;
  height: 90px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #B3B3B3;
  border-bottom: 1px solid #B3B3B3;
/*  z-index: 999999;*/
  z-index: 9998;
}
#category_menu .category {
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* スムーズスクロール */
  scrollbar-width: none; /* Firefox: スクロールバーを非表示 */
}
#category_menu .category::-webkit-scrollbar {
  display: none; /* Chrome: スクロールバーを非表示 */
}
#category_menu .category li {
  flex: 0 0 125px;
  text-align: center;
  text-decoration: none;
  color: #333;
  padding: 0 10px;
  align-items: center;
}
#category_menu .category a img {
  max-width: 50px;
}
#category_menu .category a .txt {
  font-size: 14px;
  font-weight: 600;
  margin-top: -5px;
}
#category_menu .category a .sp_blank {
  display: none;
}
@media screen and (max-width: 1374px) {
  #category_menu {
   position: relative;
  }
  #category_menu .category {
    justify-content: left;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* スムーズスクロール */
    scrollbar-width: none; /* Firefox: スクロールバーを非表示 */
  }
  #category_menu .scroll-indicator {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    line-height: 1;
    width: 30px;
    height: 30px;
    background-color: rgb(220 212 212 / 80%);
    transition: all 0.2s ease;
    cursor: pointer;
  }
  #category_menu .scroll-indicator:hover {
    background-color: rgb(189 187 187);
  }
  #category_menu .scroll-indicator:after {
    content: "";
    color: rgba(239, 127, 0, 0.6);
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 1em;
    height: 1em;
    border: 3px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(20%, 44%) rotate(45deg);
  }
  #category_menu .scroll-indicator.scroll-left {
    right: unset;
    left: 0;
    transform: translateY(-50%) rotate(180deg);
    opacity: 0;
  }
}
@media screen and (min-width: 1375px) {
  #category_menu {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  #category_menu {
    height: 60px;
  }
  #category_menu .category li {
    flex: 0 0 80px;
    padding: 0 5px;
  }
  #category_menu .category li:nth-child(3) a {
    line-height: .8em;
  }
  #category_menu .category li:nth-child(3) a .txt {
    margin-top: -9px;
  }
  #category_menu .category a img {
    margin-top: -4px;
    max-width: 36px;
  }
  #category_menu .category a .txt {
    font-size: 11px;
  }
  #category_menu .category a .sp_blank {
    display: block;
  }
}
/* サービスメニュー end */


/*************************************
  EC商品
**************************************/
.ec_item h3 {
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
}

/* 商品価格 */
.ec_price_list{
  display: flex;
  align-items: flex-end;
  padding: 0;
  max-height: 21px;
}
.ec_sales_price {
  font-size: 15px;
  font-weight: bold;
}
.ec_base_price {
  font-size: 13px;
  text-decoration: line-through;
}

