@charset "UTF-8";

/* ------------------------------------------------------------ */
/* page-ttl-area  */
/* ------------------------------------------------------------ */
.page-ttl-area {
  padding: 6em 0;
}

.page-ttl-area .main-ttl {
  margin-bottom: 0;
}

.page-ttl-desc {
  text-align: center;
  font-weight: 500;
  line-height: 2.2;
  margin: 2em auto;
}

/* ------------------------------------------------------------ */
/* archive  */
/* ------------------------------------------------------------ */
.post .page-ttl-area {
  padding: 7em 0 3em;
}

.post .page-ttl-area .ttl-svg {
  margin-bottom: 1rem;
}

.archive .post-container {
  padding-top: 4em;
}

.togo-shoji.archive .post-container,
.togo-shoji.single .post-container {
  padding-top: 2em;
}

.post-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 1em auto 4em;
}

.togo-shoji .post-list {
  margin-top: 0;
}

.post .post-list-item {
  font-size: 1.6rem;
  margin: 0 auto 2rem;
}

.post-list-item a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.post-list-item .txt {
  width: 100%;
  padding: 2rem 1.5rem;
  border: 2px solid #000;
  border-radius: 10px 10px 0 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.togo-shoji .post-list-item .txt {
  border-color: #0093cb;
  border-radius: 0;
  font-size: 1.6rem;
}

.post-list-item .update {
  width: 100px;
  font-weight: 500;
}

.post-list-item .post-ttl {
  width: calc(100% - 100px);
  padding-left: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
}

.post-list-item .readmore {
  display: inline-block;
  margin: 0 0 0 auto;
  background: #000;
  border-radius: 0 0 10px 10px;
  color: #fff38e;
  font-weight: 800;
  font-size: 1.4rem;
  padding: 0.8rem 2rem;
  text-align: center;
  position: relative;
}

.togo-shoji .post-list-item .readmore {
  background: #0093cb;
  border-radius: 0;
}

.post-list-item .readmore::after {
  content: "\f138";
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  margin: 0 0 0 1.5rem;
  line-height: 1;
}

/* ------------------------------------------------------------ */
/* single  */
/* ------------------------------------------------------------ */
.editor-area {
  width: 100%;
  max-width: 680px;
  height: auto;
  padding: 0;
  /* font-size: 1.4rem; */
  margin: 0 auto 4em;
  position: relative;
}

.editor-area .post-ttl {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto 0.5em;
}

.editor-area .update {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 auto 2em;
}

/* ------------------------------------------------------------ */
/* pagenate  */
/* ------------------------------------------------------------ */
.pagenate {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin: 3em auto;
}

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

.scroller-status {
  width: 100%;
  display: none;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.4rem;
}

.page-numbers {
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid #000;
  padding: 0.8rem 1.2rem;
}

.pagenate .back {
  background-color: #fff;
  color: #000;
  margin: 0;
}

.pagenate .prev,
.pagenate .next {
  /* padding: 0; */
  background-color: #fff38e;
}

.pagenate .prev {
  padding-left: 3.5rem;
  /* padding-right: 1rem; */
  margin: 0 1rem 0 0;
}

.pagenate .next {
  padding-right: 3.5rem;
  /* padding-left: 1rem; */
  margin: 0 0 0 1rem;
}

.togo-shoji .page-numbers {
  border-radius: 0;
  border-color: #0093cb;
}

.togo-shoji .pagenate .back {
  color: #0093cb;
}

.togo-shoji .pagenate .prev,
.togo-shoji .pagenate .next {
  background-color: #0093cb;
  color: #fff;
}

.pagenate .prev::before,
.pagenate .next::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 45%;
}

.pagenate .prev::before {
  left: 0.8rem;
  transform: rotate(-40deg);
  -webkit-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
}

.pagenate .next::before {
  right: 0.8rem;
  transform: rotate(40deg);
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}

.pagenate .prev:hover::before {
  left: 0.4rem;
}

.pagenate .next:hover::before {
  right: 0.4rem;
}

.pagenate .prev::after,
.pagenate .next::after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 52%;
  right: 0;
  transform: scale(1);
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.togo-shoji .pagenate .prev::before,
.togo-shoji .pagenate .next::before,
.togo-shoji .pagenate .prev::after,
.togo-shoji .pagenate .next::after {
  background-color: #fff;
}

.pagenate .prev::after {
  left: 0.8rem;
  transform-origin: right center;
}

.pagenate .next::after {
  right: 0.8rem;
  transform-origin: left center;
}

.pagenate .prev:hover::after,
.pagenate .next:hover::after {
  transform: scale(1.2);
}

/* ------------------------------------------------------------ */
/* fix_btn */
/* ------------------------------------------------------------ */
.fix_btn {
  position: fixed;
  right: 0;
  top: 80px;
  width: 42px;
  height: 130px;
  z-index: 2;
  /* -webkit-transform: translateX(150%); */
  transform: translateX(150%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  animation: none;
}

.fix_btn.is-fixed,
.fix_btn.is-show {
  transform: translateX(0);
}

.fix_btn_item {
  width: 100%;
  height: 100%;
  display: block;
  padding: 1rem 0.6rem 2rem 0;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
  background: #fff38e;
  border: 2px solid #000;
  border-right: none;
  border-radius: 10px 0 0 10px;
  position: relative;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.fix_btn_item:hover {
  background: #0093cb;
  color: #fff;
}

.fix_btn_item .arw {
  width: 12px;
  height: 12px;
  margin: 3px 0 0 0;
}

.fix_btn_item .arw::after {
  content: "\f13a";
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  /* width: 12px;
  height: 12px; */
}

.fix_btn .illust {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
}

/* ------------------------------------------------------------ */
/* trial */
/* ------------------------------------------------------------ */
.trial .page-ttl-area {
  padding: 7em 0 3em;
}

.trial .page-ttl-area .ttl-svg {
  max-width: 80%;
  margin: 0 auto;
}

.trial .editor-area {
  max-width: 800px;
  margin: 0 auto;
}

/* ------------------------------------------------------------ */
/* newspaper  */
/* ------------------------------------------------------------ */
.newspaper .page-ttl-area {
  padding-bottom: 1em;
}

.newspaper .page-ttl-area::after {
  content: "";
  display: block;
  width: 100%;
  height: 140%;
  background: url(../img/top/bg-delivery-sp.jpg) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.newspaper .page-ttl-area .main-ttl {
  font-size: 2.6rem;
}

.newspaper .page-ttl-area .ttl-caps {
  font-size: 2rem;
}

.newspaper .page-ttl-area .illust {
  width: 50%;
  max-width: 175px;
  text-align: center;
  margin: 3rem auto;
}

.newspaper .page-ttl-area .btn {
  width: 85%;
}

.newspaper .post-container {
  padding-top: 1em;
}

.newspaper .post-container .font-md {
  text-align: center;
  color: #fff;
}

/* ------------------------------------------------------------ */
/* paper-list  */
/* ------------------------------------------------------------ */
.paper-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2rem auto;
}

.paper-list:first-of-type {
  margin: 3em auto 0;
}

.paper-list-item {
  width: 100%;
  margin: 0 0 2rem;
}

.paper-list-item.wide {
  margin: 0 auto;
}

.paper-list-item .flx_item {
  margin-bottom: 0 !important;
}

.paper-list .txt .logo {
  width: 60%;
  margin: 1.6rem 0 0 auto;
}

.paper-list .form-field {
  padding: 0;
  margin: 1.6rem auto 0;
}

.newspaper .paper-list .form-field {
  align-items: stretch;
}

.style-cols .form-field {
  /* margin: 1.6rem auto 0; */
  justify-content: space-between;
}

.paper-list .form-field .price {
  font-size: 1.3rem;
  letter-spacing: 0;
  /* max-width: 48%; */
  width: 45%;
  padding: 0 2px 0 0;
}

.trial .paper-list .wide .form-field .price {
  max-width: 45%;
  width: auto;
}

.paper-list .form-field .price span {
  font-size: 1.3em;
  font-weight: bold;
  display: inline-block;
  margin: 0 3px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.trial .wide .form-field .price span {
  display: block;
  font-size: 1.4em;
}

.trial .wide .form-field .price span::after {
  content: "円";
  display: inline-block;
  font-size: 1.3rem;
  font-weight: normal;
  margin: 0 0 0 3px;
}

.paper-list .check-radio-field {
  /* max-width: calc((100% - 2rem) / 2); */
  width: calc((100% - 2rem) / 2);
  margin: 0.5rem;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}

.paper-list .check-radio-field.no_input {
  cursor: auto;
  pointer-events: none;
}

.paper-list .wide .check-radio-field {
  max-width: calc((100% - 2rem) / 2);
}

.newspaper .paper-list .wide .flx_item .check-radio-field {
  width: 100%;
  max-width: inherit;
}

.trial .paper-list .check-radio-field {
  width: auto;
  margin: 0;
  max-width: 55%;
}

.trial .paper-list .wide .check-radio-field {
  max-width: inherit;
}

.paper-list .label-ttl {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 0.6rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.paper-list .no_input .label-ttl {
  background: #fff;
  border: 1px solid #fff;
}

.paper-list .is-checked .label-ttl {
  background: #fff38e;
  border-color: #000;
}

.trial .paper-list .label-ttl {
  padding: 1rem 0.4rem;
  letter-spacing: 0;
}

.paper-list .label-ttl span {
  display: inline-block;
  font-size: 1.1em;
  margin: 0 3px 0 0;
  font-weight: bold;
  letter-spacing: 0;
  /* align-self: baseline; */
}

.newspaper .paper-list .label-ttl span {
  /* font-size: 1.5em; */
  margin: 0 3px 0 auto;
  /* line-height: 1;
  align-self: baseline; */
}

.newspaper .paper-list .wide .label-ttl span {
  font-size: 1.5em;
  line-height: 1;
}

/* 朝日新聞 */
/* #postid_790 #postid_790_1 .label-ttl span {
	width: 60px;
} */
/* 日経 */
.newspaper #postid_1139 .form-field #postid_1139_0 {
  order: 1;
}

.newspaper #postid_1139 .form-field #postid_1139_1 {
  order: 3;
  width: 100%;
}

.newspaper #postid_1139 .form-field #postid_1139_2 {
  order: 2;
}

.style-cols .post-ttl {
  display: inline-block;
  background-color: #fff38e;
  text-align: center;
  border: 2px solid #000;
  border-radius: 15px 15px 0 0;
  border-bottom: 0;
  font-size: 1.8rem;
  padding: 0.5rem 2rem;
}

.style-cols .txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0 15px 15px 15px;
}

.style-table {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.style-table .paper-list-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 0 0 1rem;
  margin: 0 auto;
}

.style-table .post-ttl {
  background-color: #fff38e;
  font-size: 1.5rem;
  padding: 1rem;
  width: 100%;
}

.style-table .txt {
  width: 100%;
  padding: 1.5rem 0 0;
  font-size: 1.4rem;
}

.style-table .txt .note {
  font-size: 0.8em;
  margin: 0.8rem auto 0;
}

.style-table .price-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.style-table .form-field {
  width: 100%;
  /* justify-content: flex-end; */
  justify-content: space-between;
}

.trial .style-table .form-field .price {
  text-align: right;
  padding: 0 1rem 0 0;
}

/* ジャパンタイムズ 1部売り */
.newspaper #postid_1185 #postid_1185_1 .label-ttl {
  flex-wrap: wrap;
}

.newspaper #postid_1185 #postid_1185_1 .label-ttl span {
  width: 100%;
  margin: 0.4rem 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  letter-spacing: 0;
}

.newspaper #postid_1185 #postid_1185_1 .label-ttl span::after {
  content: "円";
  display: inline-block;
  font-size: 1.1rem;
  font-weight: normal;
}

.newspaper #postid_1185 #postid_1185_1 .label-ttl span>span {
  font-size: 1rem;
  font-weight: normal;
  position: relative;
  width: auto;
  margin: 0;
}

.newspaper #postid_1185 #postid_1185_1 .label-ttl span>span:first-of-type::after {
  content: "300";
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0;
  margin: 0 1px;
}

.newspaper #postid_1185 #postid_1185_1 .label-ttl span>span:last-of-type::after {
  content: "400";
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0;
  margin: 0 1px;
}

/* ジャパンタイムズ ウィークエンド エディション */
.newspaper #postid_1297 .form-field {
  justify-content: flex-end;
}

/* 週刊 碁 */
.newspaper #postid_1304 .form-field {
  justify-content: flex-end;
}

/* ニューヨーク タイムズ ウィークリー */
.newspaper #postid_1307 .form-field {
  justify-content: flex-end;
}

/* ------------------------------------------------------------ */
/* news_of_note */

.news_of_note .pagenate .btn {
  width: 100%;
}

.news_of_note .pagenate .btn::after {
  display: none;
}

.news_of_note .load-more {
  border-radius: 10px;
  border-width: 2px;
  background-color: #fff38e;
  transform: translate(0, 0);
}

/* ------------------------------------------------------------ */
/* form  */
/* ------------------------------------------------------------ */
.p-country-name {
  display: none;
}

.contact .page-ttl-area {
  padding: 7em 0 3em;
}

.contact .page-ttl-area .ttl-svg {
  max-width: 70%;
  margin: 0 auto 1rem;
}

.form-box {
  width: 100%;
  max-width: 850px;
  margin: 3em auto;
}

.form-box h4 {
  border-bottom: 1px dashed #000;
  font-size: 15px;
  font-size: max(1.5rem, min(1vw + 1rem, 1.6rem));
  font-size: clamp(1.5rem, 1vw + 1rem, 1.6rem);
  padding-bottom: 3px;
  margin: 2em auto 0.5em;
}

.form-box h5 {
  font-size: 15px;
  font-size: max(1.5rem, min(1vw + 1rem, 1.6rem));
  font-size: clamp(1.5rem, 1vw + 1rem, 1.6rem);
  margin: 2em auto 0.5em;
  font-weight: 400;
}

.form-box .policy-box {
  font-size: 1.2rem;
  padding: 1em;
  border: 1px solid #000;
  height: 12em;
  overflow-y: scroll;
}

.form-box .note,
.form-box .auto,
.form-box .required {
  display: inline-block;
  padding: 5px;
  margin: 0 5px;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1;
}

.form-box input+span {
  display: inline-block;
  margin: 0 5px;
}

.form-box .required {
  background: #fff38e;
  border-radius: 3px;
}

.form-box .auto {
  background-color: #e5e5e5;
  font-weight: 500;
  text-align: center;
  padding: 1em;
  margin: 0;
}

.form-box p {
  width: 100%;
  font-size: 1.4rem;
  margin: 0.3em 0;
}

.form-field {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 0;
  font-size: 1.4rem;
}

.morinaga .form-field.products:first-of-type {
  padding-bottom: 0;
}

.morinaga .form-field.products+.form-field.products {
  padding-top: 0;
}

.email-field,
.textarea-field,
.flx-align-start {
  align-items: flex-start;
}

.field-ttl {
  width: 100%;
  font-size: 15px;
  font-size: max(1.5rem, min(1vw + 1rem, 1.6rem));
  font-size: clamp(1.5rem, 1vw + 1rem, 1.6rem);
  margin-bottom: 8px;
}

.field-input,
.wpcf7-radio {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.field-input>div {
  width: 100%;
}

.wpcf7-radio {
  gap: 10px;
}

.wpcf7-form-control-wrap:not(:where(.sizeM *)) {
  width: 100%;
}

.input-2cols>* {
  width: calc(100% / 2);
  display: block;
  margin: 0;
}

.form-box .wpcf7-radio .wpcf7-list-item,
.form-box .input-2cols .horizontal-item {
  width: calc(100% / 2 - 10px);
  margin: 0;
}

.form-box input,
.form-box select,
.form-box textarea {
  background: #fff;
  border: 1px solid #000;
  padding: 0.5em;
  width: 100%;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  letter-spacing: 0.075em;
  cursor: pointer;
}

.sizeS input {
  width: 40%;
  max-width: 150px;
}

.sizeM input:not(.wpcf7-form-control) {
  width: 60%;
  max-width: 260px;
}

.form-box label {
  cursor: pointer;
}

.select-field {
  width: 100%;
  position: relative;
}

.select-field select {
  background-color: #e5e5e5;
  border: none;
}

.zipcode .field-input {
  align-items: stretch;
}

.zipcode .auto {
  width: 40%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.zipcode-field {
  width: 55%;
  position: relative;
  margin: 0 0.5em 0 0;
}

.zipcode-field input {
  padding-left: 1.5em;
}

.select-field::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  /* top: 25%; */
  right: 1em;
  transform: translateY(-50%) rotate(-45deg);
  /* transform: rotate(-45deg); */
  pointer-events: none;
  z-index: 1;
  /* font-size: 0.7em; */
}

.zipcode-field::before {
  content: "〒";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
  z-index: 1;
}

.date-field {
  position: relative;
  width: 100%;
}

.date-field input {
  background-color: #e5e5e5;
  border: none;
}

.date-field::before {
  content: "";
  display: block;
  /* content: "\f073";
	font-family: "icomoon";
	display: inline-block;
  font-size: 1.1em;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased; */
  width: 15px;
  height: 15px;
  background: url(../img/icon/icon-calendar.svg) no-repeat center / 100%;
  position: absolute;
  top: 35%;
  right: 1em;
  /* transform: translateY(-50%); */
  pointer-events: none;
  z-index: 2;
}

.ui-datepicker .ui-datepicker-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  min-height: auto;
  padding: 0;
  -webkit-appearance: auto;
  appearance: auto;
}

.ui-datepicker .ui-datepicker-title select {
  margin: 1px 0.4em;
  color: #000;
}

.form-box .check-radio-field {
  /* display: block; */
  /* margin-right: 1em; */
  text-align: center;
}

.check-radio-field input[type="checkbox"],
.check-radio-field input[type="radio"] {
  display: none;
}

.wpcf7-radio .wpcf7-list-item-label,
.mwform-checkbox-field-text,
.mwform-radio-field-text {
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  width: 100%;
  display: block;
  padding: 0.5em;
}

.check-radio-field input[type="checkbox"]:checked+.mwform-checkbox-field-text,
.check-radio-field input[type="radio"]:checked+.wpcf7-list-item-label,
.check-radio-field input[type="radio"]:checked+.mwform-radio-field-text {
  background: #fff38e;
  border-color: #000;
}

/* 試し読み,新聞購読 */
.paper_form .form-box #check_paper {
  padding: 0;
  width: 100%;
}

.paper_form .check-radio-field .horizontal-item {
  margin: 0 8px 8px 0;
}

.paper_form #check_paper .horizontal-item {
  /* 初期状態では非表示 */
  display: none;
}

.paper_form #check_paper .horizontal-item.is-checked {
  /* checkedで表示 */
  display: inline-block;
}

.paper_form .check-radio-field .horizontal-item+.horizontal-item {
  margin: 0 8px 8px 0;
}

.paper_form .check-radio-field .mwform-checkbox-field label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: left;
  position: relative;
}

/* ×マークあり */
.paper_form .check-radio-field .mwform-checkbox-field label::after {
  content: "×";
  display: inline-block;
  font-size: 1.2em;
  letter-spacing: 0;
  line-height: 1;
  /* opacity: 0; */
  position: absolute;
  top: 50%;
  right: 0.8em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* .paper_form .check-radio-field .mwform-checkbox-field label.is-checked::after {
  opacity: 1;
} */

.paper_form .check-radio-field .mwform-checkbox-field-text {
  border-radius: 100vmax;
  margin: 0;
  /* ×マークなし */
  /* padding: 0.5em 1.5em; */
  /* ×マークあり */
  padding: 0.5em 2.5em 0.5em 1.5em;
}

.form-box textarea {
  height: 8em;
}

.accept {
  background-color: #000;
  text-align: center;
}

.accept .field-input {
  width: 100%;
  justify-content: center;
}

.accept-check {
  color: #fff;
  position: relative;
}

.accept-check .mwform-checkbox-field-text {
  padding: 0;
  background: none;
  border: none;
  width: auto;
  display: inline-block;
}

.accept-check input[type="checkbox"],
.check-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 0.5rem 0 1rem;
  vertical-align: text-bottom;
  position: relative;
}

.check-field input[type="checkbox"] {
  margin: 0 0.8rem;
  vertical-align: middle;
}

.accept-check input[type="checkbox"]::after,
.check-field input[type="checkbox"]::after {
  content: "";
  display: block;
  width: 24px;
  height: 16px;
  background: url(../img/icon/icon-check.svg) no-repeat center center / 100% auto;
  position: absolute;
  top: -2px;
  left: -3px;
  opacity: 0;
}

.accept-check input[type="checkbox"]:checked::after,
.check-field input[type="checkbox"]:checked::after {
  opacity: 1;
}

.submit-field {
  text-align: center;
  padding: 4em 0 0;
}

.submit-field .field-input {
  width: 100%;
  justify-content: center;
}

.submit-field .btn {
  pointer-events: none;
}

.submit-field input[type="button"],
.submit-field input[type="reset"],
.submit-field input[type="back"],
.submit-field input[type="submit"],
.submit-field button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  margin: 0 auto;
  padding: 12px 1em;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transform: translate(-5px, -5px);
  pointer-events: auto;
  -webkit-transition:
    transform 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
}

.submit-field input[type="button"]:hover,
.submit-field input[type="reset"]:hover,
.submit-field input[type="back"]:hover,
.submit-field input[type="submit"]:hover,
.submit-field button:hover {
  transform: translate(0, 0);
  background-color: #fff38e;
}

.submit-field .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  z-index: 3;
}

.mw_wp_form_input .is_preview {
  display: none;
}

/* 確認画面 */
.mw_wp_form_preview .flx_box {
  margin-bottom: 0 !important;
}

.mw_wp_form_preview .is_input,
.mw_wp_form_preview .required,
.mw_wp_form_preview .date-field::before,
.mw_wp_form_preview .policy-box {
  display: none;
}

.mw_wp_form_preview .is_preview {
  display: block;
}

.mw_wp_form_preview .form-box h4:last-of-type {
  margin-top: 2em;
}

.mw_wp_form_preview .accept {
  background: none;
  text-align: left;
}

.mw_wp_form_preview .accept .field-input {
  width: 72%;
  justify-content: flex-start;
}

.mw_wp_form_preview .accept-check {
  color: #000;
  text-align: left;
}

/* 完了画面 */
.mw_wp_form_confirm .zipcode-field::before {
  position: relative;
  top: inherit;
  left: inherit;
  display: inline-block;
  transform: inherit;
}

.mw_wp_form_confirm .select-field::before {
  content: none;
}

.mw_wp_form_confirm .form-box .auto,
.mw_wp_form_confirm .notice {
  display: none;
}

.mw_wp_form_confirm .form-field {
  border-bottom: 1px solid #9f9f9f;
}

.morinaga .mw_wp_form_confirm .form-field.products:first-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.mw_wp_form_confirm .form-field.submit-field {
  border: none;
}

.is_comprete {
  text-align: center;
}

.is_comprete .btn {
  margin: 4rem auto 0;
}

.mw_wp_form .error {
  width: 100%;
}

/* ------------------------------------------------------------ */
/* contact,inquiry  */
/* ------------------------------------------------------------ */
.contact .btn-3cols {
  margin: 2em auto;
}

.contact #form .font-md {
  margin: 0 auto 1em;
  text-align: center;
}

.inquiry .page-ttl-area {
  padding-bottom: 0;
}

.inquiry .post-container {
  padding-top: 0;
}

.inquiry .form-box {
  margin-top: 2em;
}

@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  /* ------------------------------------------------------------ */
  /* page-ttl-area  */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* archive  */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* single  */
  /* ------------------------------------------------------------ */

  .pagenate .back {
    width: 200px;
  }

  /* ------------------------------------------------------------ */
  /* trial,newspaper  */
  /* ------------------------------------------------------------ */
  .paper-list .form-field {
    margin: 0 auto;
  }

  /* ------------------------------------------------------------ */
  /* trial  */
  /* ------------------------------------------------------------ */
  .trial .page-ttl-area {
    padding: 7em 0 4em;
  }

  .trial .page-ttl-area .ttl-caps {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .trial .wide .form-field {
    justify-content: flex-end;
    margin: 0 auto 1rem;
  }

  .trial .paper-list .wide .form-field .price {
    width: 100%;
    padding: 0 0 1rem;
    text-align: right;
    max-width: inherit;
  }

  .trial .wide .form-field .price span {
    display: inline-block;
  }

  /* ------------------------------------------------------------ */
  /* newspaper  */
  /* ------------------------------------------------------------ */
  .newspaper .page-ttl-area::after {
    background: url(../img/top/bg-delivery.jpg) no-repeat center center / cover;
  }

  .newspaper #postid_790 .form-field #postid_790_1 {
    order: 3;
    width: 100%;
  }

  .newspaper #postid_1185 #postid_1185_1 .label-ttl span {
    width: auto;
    margin: 0 0 0 auto;
  }

  .newspaper #postid_1185 #postid_1185_1 .label-ttl span>span {
    font-size: 1.2rem;
  }

  .newspaper #postid_1185 #postid_1185_1 .label-ttl span>span:first-of-type::after,
  .newspaper #postid_1185 #postid_1185_1 .label-ttl span>span:last-of-type::after {
    font-size: 1.2em;
    margin: 0 3px;
  }

  /* ------------------------------------------------------------ */
  /* news_of_note  */
  /* ------------------------------------------------------------ */
  .news_of_note .post-container {
    padding-top: 5em;
  }

  /* ------------------------------------------------------------ */
  /* form  */
  /* ------------------------------------------------------------ */
  .field-ttl {
    width: 28%;
    margin: 0;
  }

  .form-field.align-top {
    align-items: flex-start;
  }

  .align-top .field-ttl {
    padding-top: 0.8em;
  }

  .field-input {
    width: 72%;
    padding-left: 1em;
  }
}

/* ------------------------------------------------------------ */
/* form 折り込み  */
/* ------------------------------------------------------------ */
.request .submit-field.totalcalc .field-ttl {
  align-items: center;
  gap: 5vw;
}

.totalcalc .field-ttl p {
  font-size: clamp(2rem, calc(1.807rem + 0.494vw), 2.4rem);
  margin: 0;
  width: auto;
}

@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */

  /* ------------------------------------------------------------ */
  /* page-ttl-area  */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* archive  */
  /* ------------------------------------------------------------ */
  .post .page-ttl-area {
    padding: 8em 0 3em;
  }

  .post-list {
    flex-direction: row;
    margin: 1em auto 4em;
  }

  .list-2cols .post-list-item {
    width: calc((100% - 8rem) / 2);
    margin: 0 2rem 4rem;
    display: flex;
    justify-content: flex-start;
  }

  .post-list-item a {
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .post-list-item .txt {
    height: 100%;
  }

  .post-list-item .readmore {
    font-size: 1.7rem;
  }

  /* ------------------------------------------------------------ */
  /* single  */
  /* ------------------------------------------------------------ */
  .editor-area .post-ttl {
    font-size: 2rem;
  }

  /* ------------------------------------------------------------ */
  /* pagenate  */
  /* ------------------------------------------------------------ */
  .page-numbers {
    padding: 0.8rem 2rem;
  }

  .pagenate .prev {
    padding-left: 6rem;
  }

  .pagenate .next {
    padding-right: 6rem;
  }

  .pagenate .prev::before {
    left: 1.5rem;
  }

  .pagenate .next::before {
    right: 1.5rem;
  }

  .pagenate .prev:hover::before {
    left: 0.8rem;
  }

  .pagenate .next:hover::before {
    right: 0.8rem;
  }

  .pagenate .prev::after,
  .pagenate .next::after {
    width: 32px;
  }

  .pagenate .prev::after {
    left: 1.5rem;
  }

  .pagenate .next::after {
    right: 1.5rem;
  }

  /* ------------------------------------------------------------ */
  /* trial */
  /* ------------------------------------------------------------ */
  .trial .page-ttl-area {
    padding: 8em 0 4em;
  }

  /* ------------------------------------------------------------ */
  /* newspaper */
  /* ------------------------------------------------------------ */
  .newspaper .page-ttl-area {
    padding: 8em 0 2em;
  }

  .newspaper .page-ttl-area .main-ttl {
    font-size: 5.2rem;
  }

  .newspaper .page-ttl-area .ttl-caps {
    font-size: 2.4rem;
  }

  .newspaper .page-ttl-area .illust {
    margin: 4rem auto 6rem;
  }

  /* ------------------------------------------------------------ */
  /* paper-list  */
  /* ------------------------------------------------------------ */
  .paper-list .form-field .price {
    font-size: 1.4rem;
  }

  /* .paper-list .check-radio-field {
		margin: 0.5rem 0 0.5rem 1rem;
	} */

  .paper-list .label-ttl {
    font-size: 1.3rem;
    text-align: left;
  }

  .style-cols .paper-list-item {
    width: calc((100% - 2rem) / 2);
    margin: 0 1rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .style-cols .paper-list-item:nth-of-type(2n) {
    margin: 0 0 2rem 1rem;
  }

  .style-cols .paper-list-item.wide {
    width: 100%;
    margin: 0 auto 2rem;
  }

  /* safariNG .style-cols内で.wideを持たない親要素の.flx_item */
  /* .style-cols:not(:has(.wide)) .flx_item {
		width: 100%;
		margin-right: 0;
	} */
  .style-cols .paper-list-item .flx_item {
    width: 100%;
    margin-right: 0;
  }

  .style-cols .paper-list-item.wide .flx_item {
    width: 48%;
  }

  .style-cols .txt {
    height: 100%;
    padding: 2rem;
  }

  .style-cols .txt>p {
    margin: 0 auto 2rem;
  }

  .style-cols .txt .form-field {
    margin-top: auto;
  }

  .trial .style-cols .txt .form-field {
    margin-top: 1.2rem;
  }

  .trial .style-cols .form-field .price {
    width: 40%;
  }

  .trial .paper-list .wide .form-field .price {
    width: auto;
    padding: 0 1rem 0 0;
    max-width: 45%;
  }

  .trial .paper-list .label-ttl {
    padding: 1rem 0.6rem;
  }

  .style-table {
    border-top-width: 2px;
    margin: 4rem auto 0;
  }

  .style-table .paper-list-item {
    border-top: none;
    border-bottom: 1px solid #000;
    padding: 0;
  }

  .style-table .post-ttl {
    width: 20%;
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    word-break: break-all;
  }

  .style-table .txt {
    width: 40%;
    padding: 2rem;
    font-size: 1.5rem;
  }

  /* .style-table .form-field {
		width: 40%;
	} */
  .style-table .price-item {
    width: 40%;
  }

  .style-table .form-field .price {
    text-align: right;
  }

  #postid_1185 #postid_1185_1 {
    width: auto;
  }

  /* ------------------------------------------------------------ */
  /* news_of_note  */
  /* ------------------------------------------------------------ */
  .news_of_note .post-container {
    padding-top: 6em;
  }

  /* ------------------------------------------------------------ */
  /* form  */
  /* ------------------------------------------------------------ */

  .field-ttl {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */

  /* ------------------------------------------------------------ */
  /* archive  */
  /* ------------------------------------------------------------ */
  .post .page-ttl-area {
    padding: 9em 0 4em;
  }

  /* ------------------------------------------------------------ */
  /* single  */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* fix_btn */
  /* ------------------------------------------------------------ */
  .fix_btn {
    right: 1rem;
    top: 300px;
    width: 120px;
    height: 120px;
  }

  .fix_btn_item {
    padding: 2rem 1rem 1rem 3.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
    border: 2px solid #000;
    border-radius: 100%;
    -ms-writing-mode: inherit;
    writing-mode: horizontal-tb;
  }

  .fix_btn_item .arw {
    display: block;
    height: auto;
    width: auto;
    padding: 0 0 0 2rem;
    margin: 0;
  }

  .fix_btn_item .arw::after {
    content: "\f078";
  }

  .fix_btn .illust {
    bottom: 20%;
    left: -30px;
    width: 80px;
  }

  /* ------------------------------------------------------------ */
  /* trial */
  /* ------------------------------------------------------------ */
  .trial .page-ttl-area {
    padding: 9em 0 5em;
  }

  /* ------------------------------------------------------------ */
  /* paper-list  */
  /* ------------------------------------------------------------ */
  /* .paper-list .form-field .price {
		width: 50%;
	}
	.paper-list .check-radio-field {
		width: 50%;
	} */
  .paper-list .label-ttl {
    padding: 1.2rem 1rem;
  }

  .paper-list .label-ttl span {
    font-size: 1.3em;
  }

  .style-cols .paper-list-item {
    width: calc((100% - 4rem) / 2);
    margin: 0 2rem 4rem 0;
  }

  .style-cols .paper-list-item:nth-of-type(2n) {
    margin: 0 0 4rem 2rem;
  }

  /* .trial .style-cols .flx_item:last-of-type {
		padding: 0 0 0 4rem;
	} */
  .style-cols .txt {
    padding: 3rem 4rem;
  }

  .style-cols .txt .form-field {
    margin-top: 1.6rem;
  }

  .style-cols .wide .txt .form-field {
    margin-top: 0;
  }

  .trial .style-cols .form-field .price {
    width: 50%;
    padding: 0 1rem 0 0;
  }

  .trial .paper-list .form-field .price span {
    font-size: 1.4em;
    margin: 0 0.4rem 0 0.6rem;
  }

  .trial .paper-list .wide .form-field .price {
    width: 50%;
    max-width: inherit;
    text-align: left;
  }

  .trial .wide .form-field .price span {
    margin: 0 0.4rem 0 0.6rem;
  }

  .trial .paper-list .label-ttl {
    padding: 1rem 1.6rem;
  }

  .newspaper #postid_790 .form-field #postid_790_1 {
    width: calc((100% - 2rem) / 2);
  }

  .newspaper #postid_1139 .form-field #postid_1139_1 {
    order: 2;
    width: calc((100% - 2rem) / 2);
  }

  .newspaper #postid_1139 .form-field #postid_1139_1 .label-ttl {
    flex-wrap: wrap;
  }

  .newspaper #postid_1139 .form-field #postid_1139_2 {
    order: 3;
  }

  .style-table .post-ttl {
    font-size: 2rem;
    padding: 2rem;
    /* width: 23%; */
    letter-spacing: 0.5px;
  }

  .style-table .txt {
    width: 40%;
  }

  .style-table .price-item {
    width: 40%;
  }

  .trial .style-table .form-field .price {
    padding: 0 1.6rem 0 0;
  }

  .newspaper #postid_1185 #postid_1185_1 {
    width: calc((100% - 2rem) / 2);
  }

  .newspaper #postid_1185 #postid_1185_1 .label-ttl span {
    margin: 0.4rem 0 0 auto;
  }

  .newspaper #postid_1185 #postid_1185_1 .label-ttl span>span {
    font-size: 1.3rem;
  }

  /* ------------------------------------------------------------ */
  /* contact , inquiry  */
  /* ------------------------------------------------------------ */
  .contact .page-ttl-area {
    padding: 6em 0;
  }

  .contact .btn-3cols {
    margin: 3em auto;
  }

  /* ------------------------------------------------------------ */
  /* form  */
  /* ------------------------------------------------------------ */
  .form-box {
    margin: 4em auto;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    padding: 0.8em 1em;
  }

  .mwform-checkbox-field-text,
  .mwform-radio-field-text {
    padding: 0.8em 1em;
  }

  .zipcode-field input {
    padding-left: 2em;
  }

  .zipcode-field::before {
    left: 0.8em;
  }
}