@charset "UTF-8";
.header {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #000;
  color: #fff;
  padding: 25px 0;
}
.header__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.header__top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}
.header__logo {
  width: 200px;
  margin-bottom: 0;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header__sns {
  position: absolute;
  right: 0;
  display: flex;
  gap: 15px;
}
.header__sns-link {
  width: 32px;
}
.header__sns-link img {
  width: 100%;
  height: auto;
  display: block;
}
.header__nav-list {
  display: flex;
  justify-content: center;
  gap: 45px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__nav-item a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.header__nav-item a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .header__top {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 10px;
  }
  .header__sns {
    position: static;
  }
  .header__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
  }
  .header__nav-item a {
    font-size: 13px;
  }
}
/****************** MV *******************/
.mainvisual__wrap {
  background: url(../images/mv-bg.jpg) no-repeat center/cover;
  padding: 5vh 2.6vw;
}
@media screen and (max-width: 767px) {
  .mainvisual__wrap {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.mainvisual__wrap .Inner__wrap {
  max-width: 1000px;
  margin: 0 auto;
}

/****************** 見出し *******************/
.campaign-lead {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #0000a5;
  position: relative;
}
.campaign-lead__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.campaign-lead__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  position: relative;
  min-height: 120px;
}
@media screen and (max-width: 767px) {
  .campaign-lead__inner {
    padding: 20px 0;
  }
}
.campaign-lead__illust {
  position: absolute;
  left: 0;
  top: -40px;
  width: 150px;
  z-index: 10;
}
.campaign-lead__illust img {
  width: 100%;
  height: auto;
  display: block;
}
.campaign-lead__title {
  color: #ffeb00;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  font-family: sans-serif;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .campaign-lead__inner {
    padding: 50px 0 30px;
  }
  .campaign-lead__illust {
    width: 80px;
    top: -30px;
    left: 10px;
  }
  .campaign-lead__title {
    font-size: 36px;
  }
}
body:not(.home):not(.front-page):not(.single-post):not(.archive) h4 {
  margin-bottom: 0.5em;
  padding-bottom: 10px;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  body:not(.home):not(.front-page):not(.single-post):not(.archive) h4 {
    padding-left: 0;
  }
}

body:not(.home):not(.front-page):not(.single-post):not(.archive) h4::before {
  display: none;
}

/******************* ラインナップ *****************/
.campaign-wrap {
  background: url(../images/item_bg.jpg) no-repeat center center/cover;
  padding: 10vh 2.6vw;
}
@media screen and (max-width: 767px) {
  .campaign-wrap {
    padding: 5vh 2.6vw;
  }
}

h3.bg{
  padding: .5em 0;
  border-bottom: 5px solid #0000A5;
   border-top: 5px solid #0000A5;
   background: #fff;
  font-size: clamp(36px,42px,50px);
  color:#0000A5;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: .25em;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  h3.bg{
    font-size: 1.85rem;
    margin-bottom: 0;
  }
}
.campaign-items {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.campaign-items__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.campaign-items__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 20px;
}

.campaign-item {
  width: calc((100% - 40px) / 2);
  background-color: #fff;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}
.campaign-item__head {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 24px;
  font-weight: bold;
}
.campaign-item__body {
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
}
.campaign-item__image {
  margin-bottom: 0px;
  width: 40%;
}
@media screen and (max-width: 767px) {
    .campaign-item__body {
      flex-direction: column;
    }
      .campaign-item__image {
        margin-bottom: 0.5em;
        width: 100%;
      }
      .campaign-item__head {
        font-size: 18px;
      }
  }
@media screen and (min-width: 768px) {
  .campaign-item__info{
    width: 57%;
    margin-left: 3%;
  }
}
  
.campaign-item__image img {
  width: 100%;
  height: auto;
  display: block;
}

.campaign-item__price-box{
  width: 100%;
}

.campaign-item__info-title {
  font-size: 24px;
  color: #0000a5;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 15px;
  position: relative;
}
.campaign-item__info-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #0000a5;
}
.campaign-item__tag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.campaign-item__tag {
  background-color: #0099ff;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
}
.campaign-item__tag--orange {
  background-color: #ff6600;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 5px;
}
.campaign-item__tag-text {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0;
}
.campaign-item__desc {
  font-size: 14px;
  margin-bottom: 15px;
}
.campaign-item__spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0;
  font-size: 14px;
  line-height: 1.8;
}
.campaign-item__spec-list li::before {
  content: "・";
}
.campaign-item__price-box {
  margin-top: auto;
}
.campaign-item__price-old {
  position: relative;
  margin-bottom: 0px;
}
.campaign-item__price-old .campaign-item__price-val {
  font-size: 22px;
  font-weight: bold;
  -webkit-text-decoration: line-through red;
          text-decoration: line-through red;
  margin-bottom: 0;
}
.campaign-item__price-old .campaign-item__price-val span {
  font-size: 16px;
}
.campaign-item__price-new .campaign-item__price-val {
  color: #d00;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.campaign-item__price-new .campaign-item__price-val::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #ffff00;
  z-index: -1;
  opacity: 0.15;
}
.campaign-item__price-new .campaign-item__price-val span {
  font-size: 16px;
  color: #121212;
}
.campaign-item__price-label {
  font-size: 13px;
  font-weight: bold;
  display: block;
}
.campaign-item__price-note {
  font-size: 12px;
  margin: 0;
  color: #666;
}
@media (min-width: 900px) {
.campaign-item__price-note {
  font-size: 14px;
}
}
@media (max-width: 900px) {
  .campaign-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 600px) {
  .campaign-item {
    width: 100%;
  }
  .campaign-items__container {
    padding: 0;
  }
}
.arrow {
  position: relative;
  display: inline-block;
  width: 4px;
  height: 25px;
  margin: 0 7.8px;
  border-radius: 9999px;
  background-color: #ff0000;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 15px;
  border-radius: 9999px;
  background-color: #ff0000;
  transform-origin: 50% calc(100% - 2px);
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

/*************注意事項***************/
.campaign-attention {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #FFFBEA;
  padding: 10vh 2.6vw;
}
@media screen and (max-width: 767px) {
  .campaign-attention {
    padding: 5vh 2.6vw;
  }
}
.campaign-attention__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.campaign-attention__head {
  text-align: center;
  margin-bottom: 1em;
}
.campaign-attention__eng-title {
  color: #0000A5;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.campaign-attention__jp-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.campaign-attention__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.campaign-attention__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.campaign-attention__item-head {
  background-color: #E6463D;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}
.campaign-attention__item-body {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  padding: 1em;
}
.campaign-attention__item-body p {
  margin-bottom: 1.5em;
}
.campaign-attention__note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 900px) {
  .campaign-attention {
    padding: 60px 0;
  }
  .campaign-attention__eng-title {
    font-size: 40px;
  }
  .campaign-attention__list {
    flex-direction: column;
    gap: 40px;
  }
  .campaign-attention__item-head {
    margin-bottom: 15px;
    min-height: auto;
  }
}
/************** よくある質問 ****************/
.campaign-faq {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 0;
  padding: 10vh 2.6vw;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .campaign-faq {
    padding: 5vh 2.6vw;
  }
}
.campaign-faq__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .campaign-faq__container {
    padding: 0;
  }
}
.campaign-faq__head {
  text-align: center;
  margin-bottom: 40px;
}
.campaign-faq__eng-title {
  color: #0000A5;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3em;
}
.campaign-faq__jp-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
.campaign-faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.campaign-faq__item {
  width: 100%;
}
.campaign-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #0000A5;
  color: #fff;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background-color 0.3s;
}
.campaign-faq__question:hover {
  opacity: 0.9;
}
.campaign-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFEB00;
  color: #0000A5;
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}
.campaign-faq__question-text {
  font-size: 20px;
  font-weight: bold;
  padding-right: 40px;
}
.campaign-faq__toggle {
  position: absolute;
  right: 25px;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.campaign-faq__toggle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.campaign-faq__item.is-open .campaign-faq__toggle::after {
  transform: rotate(0deg);
}
.campaign-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
  overflow: hidden;
  background-color: #f9f9f9;
}
.campaign-faq__answer-inner {
  min-height: 0;
  padding: 0 25px;
  opacity: 0;
  transition: opacity 0.3s, padding 0.3s;
}
.campaign-faq__item.is-open .campaign-faq__answer {
  grid-template-rows: 1fr;
}
.campaign-faq__item.is-open .campaign-faq__answer-inner {
  padding: 20px 25px;
  opacity: 1;
}

@media (max-width: 768px) {
  .campaign-faq__eng-title {
    font-size: 40px;
  }
  .campaign-faq__question-text {
    font-size: 16px;
  }
  .campaign-faq__icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-right: 12px;
  }
}
/***************** メールフォーム *******************/
section#contact {
  background: #F2F8FB;
  padding: 10vh 2.6vw;
}
@media screen and (max-width: 767px) {
  section#contact {
    padding: 5vh 2.6vw;
  }
}
section#contact .Inner__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

dl.contact {
  display: flex;
  background: #fff;
  border-radius: 0.46em;
  margin-bottom: 0.5em;
}
dl.contact dt {
  width: 20%;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  dl.contact dt {
    width: 35%;
  }
}
dl.contact dt .Inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
dl.contact dt .Inner span.block {
  display: block;
  margin: 0 0 0;
}
dl.contact dt .text_red {
  color: #fff;
  background: #ff6600;
  padding: 0.25em;
  line-height: 1;
  font-size: 0.8rem;
  display: block;
  margin-left: auto;
  text-align: center;
}
dl.contact dt .any {
  background: #DBBCA9;
  padding: 0.25em;
  line-height: 1;
  font-size: 0.8rem;
  display: block;
  margin-left: 0;
  text-align: center;
  color: #fff;
}
dl.contact dd {
  width: 80%;
  padding: 0.5em;
  margin-left: 0;
}

input[type=submit] {
  color: #FFFFFF;
  display: block;
  margin: 1em auto 0 auto;
  padding: 25px;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
  background-color: #ff6600;
  border: 0;
  border-bottom: 6px solid #C8550D;
  border-radius: 4.46em;
  width: 100%;
  box-sizing: broder-box;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 1px;
  max-width: 500px;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}

input[type=reset]:hover, input[type=button]:hover, input[type=submit]:hover {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0);
  background: #ea1f0f;
}

#short {
  max-width: 500px;
  margin: 0;
}

::-moz-placeholder {
  color: #B7B7B7;
}

::placeholder {
  color: #B7B7B7;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=password],
select,
textarea {
  border-radius: 3px;
  padding: 1em 0.5em;
  box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.1);
  border: solid 1px #F0F0F0;
  background: #fefefe;
  margin: auto;
  width: 100%;
  display: block;
  line-height: 1.4;
  font-size: 16px;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=search],
  input[type=password],
  select,
  textarea {
    font-size: 15px;
    padding: 0.5em;
  }
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: solid 1px #ddd;
  background-color: #f2f2f2;
}

input[type=text], input[type=email], input[type=password], input[type=tel], input[type=date] {
  background-color: #fafafa;
  width: 100%;
}

input[type=text], input[type=email], input[type=tel], input[type=search], input[type=password], select, textarea {
  width: 100%;
  color: #010101;
}

@media screen and (max-width: 767px) {
  textarea {
    max-height: 200px;
  }
}

p.privacy {
  margin: 1em 0 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-size: 16px;
}
p.privacy a {
  text-decoration: none !important;
  color: #006BC3;
}
@media screen and (max-width: 767px) {
  p.privacy {
    font-size: 14px;
  }
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.submit_wrap p {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 767px) {
  dl.contact {
    flex-direction: column;
  }
  dl.contact dt {
    width: 100%;
    margin-bottom: 0;
  }
  dl.contact dt .Inner {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  dl.contact dt .Inner .text_red {
    margin-left: 0;
  }
  dl.contact dd {
    width: 100%;
    padding-top: 0;
  }
}
#contact .campaign-contact__head {
  text-align: center;
  margin-bottom: 50px;
}
#contact .campaign-contact__head .eng-title {
  color: #0000A5;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#contact .campaign-contact__head .jp-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

#contact {
  padding: 80px 0;
}
@media (max-width: 900px) {
  #contact .campaign-contact__head {
    margin-bottom: 30px;
  }
  #contact .campaign-contact__head .eng-title {
    font-size: 40px;
  }
  #contact .campaign-contact__head .jp-title {
    font-size: 16px;
  }
}
input[type=submit]:not(:disabled):hover {
  color: #fff;
  cursor: pointer;
  background-color: #f93e03;
}/*# sourceMappingURL=campaign.css.map */