@charset "UTF-8";
/*
* main.css
*
*/
/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}



progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline; 
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0; 
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit; 
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer; 
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0; 
  border: 0;
}

input {
  line-height: normal;
}

code,
kbd,
pre,
samp {
  font-family: monospace,monospace;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: 0;
}

/* ------------------------
  Base Settings
------------------------ */
html {
  font-size: 10px;
}

body {
  min-width: 320px; 
  background-color: #fff;
  word-wrap: break-word;
  color: #505050;
  font-size: 1.4rem;
  line-height: 1.6875;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  background-color: #036eb8;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #036eb8;
  color: #fff;
  text-shadow: none;
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 769px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

.u-visuallyhidden {
  overflow: hidden;
  clip: rect(0 0 0 0); 
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto; 
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}

.u-invisible {
  visibility: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------
  Components
------------------------ */
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 2px solid transparent;
  background: transparent;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  line-height: 1.3; 
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-btn-edit {
  min-width: 50px;
  background-color: #000;
  color: #fff;
  font-size: 1.1rem;
}
.c-btn-edit:hover {
  color: #fff;
}
@media (min-width: 769px) {
  .c-btn-edit {
    min-width: 90px;
    height: 27px;
    font-size: 1.4rem;
  }
}


.c-container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px; 
  max-width: 800px;
}

/*--
top note
--*/
    .top_note {
        font-size: 3.2vw;
        font-weight: 700;
        margin: 2vw 6vw;
        letter-spacing: 1px;
    }

    .top_note li:before {
      content: "・ "
    }

    .top_note span {
        color: red;
    }

@media (min-width: 769px) {
    .top_note {
        font-size: 14px;
        font-weight: 700;
        margin: 25px auto;
        letter-spacing: 1px;
    }

    .top_note li:before {
      content: "・ "
    }
    .top_note ul {
        list-style-position: inside;
    }
    .top_note ul li {
        text-indent: -1em;
    }

    .top_note span {
        color: red;
    }
}

.c-sectionHeading {
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center; 
  font-size: 2.2rem;
  font-weight: bold;
}
.c-sectionHeading:first-child {
  margin-top: 0;
}
.c-sectionHeading_label {
  display: inline-block;
  position: relative;
  /* padding-bottom: 6px; */
}
@media (min-width: 769px) {
  .c-sectionHeading_label {
    padding-bottom: 10px;
  }
}

.c-sectionBox {
  margin: 0px 15px;
  padding: 10px 10px; 
  background: #fff;
}
.c-sectionBox:first-child {
  margin-top: 0;
}

@media (min-width: 769px) {
  .c-sectionBox {
    padding: 35px 30px;
  }
  .c-sectionHeading + .c-sectionBox {
    margin-top: 30px;
  }
}

.c-formSection {
  padding-top: 15px;
  padding-bottom: 5px;
  border-top: 1px solid #d6d6d6;
}

.c-formSection-border {
  border-top: 1px solid #54616B;
}
.c-formSection:first-child {
  padding-top: 0;
  border-top: 0;
}
.c-formSection:last-child {
  padding-bottom: 0;
}
@media (min-width: 769px) {
  .c-formSection {
    padding-top: 15px;
    padding-bottom: 5px;
  }
}

.c-formSection-last {
  padding-bottom: 20px!important;
}

.c-formSection_headingGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-formSection_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2; 

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
}
@media (min-width: 769px) {
  .c-formSection_heading {
    margin-bottom: 32px;
    font-size: 2rem;
  }
}

.c-formSection_heading_btn {
  margin-left: auto;
}

.c-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 45px;
  height: 18px;
  text-align: center;
  color: #fff;
  background-color: #D62A15;
  font-size: 1.2rem;
  line-height: 1; 
  margin-right: 15px;

  -webkit-box-pack: center; 

      -ms-flex-pack: center; 

          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-formSection_heading .c-tag {
  margin-right: 10px;
}
@media (min-width: 769px) {
  .c-tag {
    height: 25px;
    font-size: 1.4rem;
  }
}

.c-formItemRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap; 

      flex-wrap: wrap;
}

.c-formItemRow:last-child {
  margin-bottom: 10px;
}
.c-formItemRow .c-formItem {
  margin-bottom: 5px;
  margin-right: 12px;
  padding-right: 6px;
  /* padding-left: 6px; */
}
@media (min-width: 769px) {
  .c-formItemRow {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .c-formItemRow-only-lg {
    display: block;
  }
  .c-formItemRow-only-lg .c-formItem {
    margin-bottom: 16px;
  }
  .c-formSectionGroup {
		padding-top: 0px;
		border-radius: 5px;
	}
	.c-formSectionGroup, .c-formSection {
		background-color: #fff;
	}
}

.c-formItem {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .c-formItem {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media (min-width: 769px) {
  .c-formItem {
    margin-bottom: 24px;
  }
}

.c-formItem_heading {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: inherit;
}
@media (min-width: 769px) {
  .c-formItem_heading {
    font-size: 1.6rem;
  }
}

.c-form_errorMessage {
  margin-top: 6px;
  width: 100%;
  color: #f00; 
  font-weight: bold;
}
.c-formItemRow > .c-form_errorMessage {
  margin-right: 6px;
  margin-left: 6px;
}

.c-form_input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 10px;
  border: 1px solid #999;
  border-radius: 5px;
  min-height: 40px;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .c-form_input,
  .c-form_input-lg-wide {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .c-form_input {
    padding: 0 20px; 
    width: 410px;
    min-height: 40px;
  }
  .c-form_input-lg-wide {
    width: 632px;
  }
}

.c-formTable {
  margin-top: 24px;
  margin-bottom: 24px;
  border-top: 2px solid #d6d6d6;
}
.c-formTable:first-child {
  margin-top: 0;
}
.c-formTable:last-child {
  margin-bottom: 0;
}
.c-confirm_subheading + .c-formTable {
  margin-top: 18px;
}
@media (min-width: 769px) {
  .c-formTable {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.c-formTable_row {
  padding: 12px 0;
  /*border-bottom: 1px solid #d6d6d6;*/
}
@media (min-width: 769px) {
  .c-formTable_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 0; 

    -webkit-box-align: center; 

        -ms-flex-align: center; 

            align-items: center;
  }
}



.c-formTable_heading {
  font-size: 1.3rem;
  font-weight: inherit;
}
@media (min-width: 769px) {
  .c-formTable_heading {
    font-size: 1.5rem;
    width: 110px;
  }

  .c-formTable_heading_row {
    font-size: 1.5rem;
    width: 200px;
  }
}

.c-formTable_body {
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .c-formTable_body {
    font-size: 1.4rem; 

    -webkit-box-flex: 1; 

        -ms-flex: 1; 

            flex: 1;
  }
}

.c-confirm_subheading {
  margin-top: 36px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 769px) {
  .c-confirm_subheading {
    font-size: 1.8rem;
  }
}

.c-confirm_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-confirm_dl dt,
.c-confirm_dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-confirm_dl dt {
  margin-right: 1em;
}

.c-footController {
  position: relative;
}

@media (max-width: 767.98px) {
  .c-footController_btn-back {
    padding: 30px 0px 0px;
    margin-bottom: 0px;
    text-align: center;
  }
}

.c-footController_btn-back .c-btn {
  border: 1px solid #000000;
  min-width: 160px;
  height: 36px;
  /* background-color: #F3F0ED; */
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px;
}
@media (min-width: 769px) {
  .c-footController_btn-back .c-btn {
    min-width: 140px;
    height: 46px;
  }
}

@media (min-width: 769px) {
  .c-footController_btn-back {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto; 
    height: 46px;
  }
}

.c-footController_bar {
  padding: 30px 0; 
}
@media (min-width: 769px) {
  .c-footController_bar {
    padding: 50px 0;
  }
}

.c-footController_btn-primary {
  text-align: center;
}
.c-footController_btn-primary .c-btn {
  min-width: 240px;
  height: 56px;
  color: #FFFFFF;
  background-color: #3270D6;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
}


/* ------------------------
  l-container
------------------------ */
.l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

/* ------------------------
  l-header
------------------------ */
.l-header_sonybar {
  background: #000;
}

.l-header_sonybar_logo {
  padding: 12px 16px;
  text-align: right;
  line-height: 0;
}
.l-header_sonybar_logo img {
  height: 16px;
}

.header_bar {
  max-width: 980px;
  margin: 0 auto;
  height: 90px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}
@media (max-width: 768px) {
.header_bar{
  padding: 0 10px 0 0;
  height: 65px;
}
}

.header_tel {
  text-align: right;
}

.header_tel .tel_txt {
  font-size: 11px;
  letter-spacing: .1em;
}
.header_tel .tel_num {
  display: inline-block;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    letter-spacing: .05em;
}

.header_logo {
  text-align: center;
  line-height: 0;
}
.header_logo img {
  height: 40px;
}
@media (min-width: 420px) {
  .header_logo img {
    height: 46px;
  }
  .header_tel .tel_num {
    font-size: 18px;
    line-height: 26px;
   }
   .header_tel .tel_txt {
  font-size: 12px;
}
}
.header_outer {
  width: 100%;
  background: #fff;
}
.header_outer.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  box-shadow:0px 1px 7px 1px #a0a0a0;
}

@media (min-width: 560px) {

  .header_logo img {
    height: 72px;
  }
  .header_tel .tel_num {
    font-size: 20px;
    line-height: 28px;

}
.header_tel .tel_txt {
  font-size: 14px;
}
}

.container{
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}
.container:first-child {
  background-color: #fff;
}

/* ------------------------
  l-main
------------------------ */
.l-main {
  background: #FFFFFF;
}

.formContainer {
  padding-bottom: 30px;
}
@media (min-width: 769px) {
  .formContainer {
    padding-bottom: 50px;
  }
}

@media (min-width: 769px) {
  .selectPlan_lead {
    font-size: 1.6rem;
  }
}

.selectPlan_formItemRow .c-formItem {
  margin-top: 12px; 
  max-width: 100%;

  -webkit-box-flex: 0;

      -ms-flex: 0 0 100%;

          flex: 0 0 100%;
}
@media (min-width: 769px) {
  .selectPlan_formItemRow .c-formItem {
    max-width: 25%; 

    -webkit-box-flex: 0; 

        -ms-flex: 0 0 25%; 

            flex: 0 0 25%;
  }
}

.terms {
  padding: 30px 0; 
  background: #d6d6d6;
}
@media (min-width: 769px) {
  .terms {
    padding: 50px 0;
  }
}

.terms_subheading {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 769px) {
  .terms_subheading {
    margin-bottom: 18px;
    font-size: 1.8rem;
  }
}

@media (min-width: 769px) {
  .terms_lead {
    font-size: 1.6rem;
  }
}

.terms_checkbox {
  text-align: center;
}



/* ------------------------
  l-footer
------------------------ */
.l-footer {
  margin-top: auto;
  background: #000;
  color: #fff;
}

.l-footer_copyright {
  padding: 20px 0 50px;
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  .l-footer_copyright {
    text-align: center;
  }
}
@media (min-width: 769px) {
  .l-footer_copyright {
    padding: 30px 0 80px;
    font-size: 1.4rem;
  }
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}



@media (max-width: 768px) {

  .c-formPayment {
    margin: 3vw 0;
  }

  .c-formPayment td,
  .c-formPayment th {
    border: solid 1px #ccc;
    padding: 2vw;
    text-align: center;
    font-size: 2vw;
  }

  .c-formPayment th {
    background: #edf5ff;
  }

  .c-formPayment tr:nth-of-type(2) td:first-of-type {
    white-space: nowrap;
    width: 8vw;
  }

  .c-formPayment tr:nth-of-type(2) td:nth-of-type(n+2) {
    width: 30vw;
  }

  .c-formPayment td .discount {
    font-size: 3vw;
    font-weight: 700;
    color: #f56739;
  }

  .c-formPayment td .null {
    font-size: 3vw;
    font-weight: 700;
  }


  .c-formPayment .cashback p:nth-of-type(1) {
    text-align: left;
    font-size: 2.7vw;
    font-weight: 700;
  }

  .c-formPayment .cashback p:nth-of-type(1) span {
    color: #f56739;
    font-size: 4vw;
    margin: 0 0.5vw;
  }

  .c-formPayment .cashback p:nth-of-type(n+2) {
    font-size: 2vw;
    text-align: left;
  }

  .c-formPayment .cashback p:nth-of-type(n+2):before {
    content: "※ ";
  }

  .c-formPayment .note {
    margin: 2vw 0 0;
  }

  .c-formPayment .note p {
    font-size: 2vw;
  }

  .c-formPayment .note p:before {
    content: "※ ";
  }

}

@media screen and (min-width: 769px) {
	.ec-layoutRole .ec-layoutRole__contents {
		max-width: 100%;
	}
	.container div.cont-center {
		max-width: 980px;
		margin: auto;
	}
	.container div.c-step {
		margin: 34px auto 34px;
	}

  .c-sectionHeading_Contracted {
    padding-bottom: 80px;
  }
  .c-sectionHeading_Registration_Complete {
    padding-bottom: 80px;
  }
  .c-sectionHeading_Plan_Cancel_Complete {
    padding-top: 80px;
    padding-bottom: 0;
  }
	
  input[type=text].c-form_input-lg-wide
  ,input[type=email].c-form_input-lg-wide
  ,input[type=tel].c-form_input-lg-wide{
		width: 670px;
	} 
  
	.entry-notes {
		margin: 20px auto 70px;
	}
	.container div.prof-notes,.prof-notes {
		color: #ff0000;
		margin: 15px auto 60px;
	}
	.delivery_note {
		max-width: 980px;
		margin: auto auto 48px;
    color: #CF000E;
	}
}
@media screen and (max-width: 768px) {
	.entry-notes {
		margin: 10px auto;
	}
	.container div.prof-notes,.prof-notes {
		color: #ff0000;
		margin: 15px auto 15px;
	}
	.c-formItemRow {
		margin-left: 0;
	}

  .c-step {
    margin-top: 8px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 20px;
  }

	.delivery_note {
		margin: 0px 15px 15px;
    color: #CF000E;
	}
}

.c-form_checkboxItem label {
	width: 100%;
}
.ec-telInput input {
	max-width: 100%;
}
.ec-select select {
	background-color:#fff;
	border: 1px solid #999;
	appearance: none;
}
.ec-select {
	position: relative;
	width: fit-content;
	min-width: 95px;
  margin-bottom: 4px;
}
.ec-select.birthday_item {
	min-width: 70px;
}

.ec-select:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	border: 1px solid #999;
	width: 32px;
  background: url(/store/img/ico_select_arw.png) no-repeat center;
	background-size: 15px 15px;
	pointer-events: none;
	background-color: #fff;
	border-top-right-radius : 3px;
	border-bottom-right-radius : 3px;
}
select#topProduct_address_pref {
	min-width: 150px;
  margin-left: 2px;
}

.c-sectionHeading-content{
  max-width:980px;
  margin:auto;
  font-size:2rem;
  padding: 0 0 15px 0;
  /* font-weight:bold; */
  text-align:center;
}

.c-sectionHeading-notice{
  max-width:980px;
  margin:auto;
  font-size:2rem;
  padding: 0 0 15px 0;
  text-align:left;
}


.amazon_button_desable {
	opacity: 0.5;
    display: inline-block;
    pointer-events: none;
}

.text-border_bottom {
  text-decoration:underline;
  position:relative;
  text-align:center;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2; 
}

.c-tag-sec {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 45px;
  height: 18px;
  text-align: center;
  color: #fff;
  background-color: #4682b4;
  font-size: 1.2rem;
  line-height: 1; 
  padding: 2px;

  -webkit-box-pack: center; 

      -ms-flex-pack: center; 

          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 769px) {
  .c-tag-sec {
    height: 25px;
    font-size: 1.4rem;
  }
}

.product-ul-ceter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-img {
  max-width: 100px; 
  max-height: 90px;
}

.button-no-select {
  border: 1px solid #54616B;
}

.button-select {
  border: 5px solid #0F70D6;
}

.sec-span {
  font-weight: normal;
  font-size: 1.1em;
  vertical-align: 0.3em;
}

.product_title_row {
  display: flex;
}

.modal_link_style {
  vertical-align: center;
  text-decoration: none;
}

.delivery_fee_color {
  background-color: #D62A15;
  color: #FFFFFF;
  margin-left: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.text-color-red {
  color: #D62A15;
}

/*======================================================================
　モーダル（新）
===================================================================== */

body.fixed {
	overflow-y: scroll;
	overflow-x: hidden;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
}

.modal_wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0.4);
	z-index: 9999999999;
	overflow-x: scroll;
	display: none;
	align-items: baseline;
	justify-content: center;
}

.modal_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.modal_wrapper_in {
	background: #fff;
	position: relative;
	z-index: 9999;
}

.modal_contents {
	display: none;
}

/* クローズボタン */

.modal_closeBtn {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 35px;
	height: 35px;
	cursor: pointer;
	transition: all .2s ease;
}

.modal_closeBtn span {
	width: 100%;
	height: 2px;
	background: #000;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}

.modal_closeBtn span:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.modal_closeBtn span:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_closeBtn:hover {
	opacity: 0.6;
	transition: all .2s ease;
}

/* 開閉 */
.modal_wrapper.open_wrap {
  display: flex;
}
  
.modal_contents.open_contents {
  display: block;
}

.modal_warranty_div {
  text-align: center;
}

.product-image-div-pc {
  width: 130px;
}

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

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

.text-credit-info {
  margin-left: auto;
  text-align: left;
  display: inline-block;
  font-weight: bold;
  text-shadow: 0 0 #000000;
} 

.product-sub-button-row {
  display: flex;
}

.total-div-nostock {
  color: #D62A15;
  text-align: center;
  font-size: 20px;
}

/*----------------------------------------------
　PC・SP切り替え
--------------------------------------------- */	

@media screen and (max-width:768px) {
  
  .only--pc {
    display: none !important;
    }
  
  .product-ul {
    display: flex;
    justify-content: center;
    align-items: center;
  } 

  .main-product-ul {
    margin-bottom: 10px;
  }

  .sp_image_row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .product-image_row-div {
    width: 110px;
    height: 110px;
  }

  .product-name-div {
    font-size: 15px;
    font-weight: bold;
    line-height: 18px;
    text-shadow: 0.1px 0.1px 0.1px #000000;
  }

  .product-name-div:empty {
    height: 24px;
  }

  .row_img {
    max-height: 110px;
    max-width: 110px;
    height: 110px;
    width: auto;
  }

  .row_image_sp_main {
    max-height: 200px;
    max-width: 200px;
    height: 200px;
    width: auto;
  }
  
  .main-image-li {
    max-width: 200px;
    max-height: 200px;
    height: 200px;
    width: auto;
    position: relative;
  }

  .c-button-main {
    margin: 5px;
    text-align: center;
    text-decoration: none;
    background: #FFFFFF;
    width: 100px;
    height: 55px;
    position: relative;
    box-sizing: content-box;
  }

  .button-code-div {
    background-color: #54616B;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .button-price-div {
    text-align: center;
    width: 100%;
    height: 29px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c-div-nostock {
    text-decoration: none;
    width: 100px;
    height: 55px;
    transform: translate(-50%,-50%);
    background-color: rgba(105, 105, 105, 0.5); /*#696969をRGBに変換*/
    position: absolute; 
    top:50%;
    left:50%;
  }

  .button-price {
    font-weight: bold;
    font-size: 15px;
  }

  .button-price-tax {
    font-size: 8px;
  }

  .product-sub-button-row {
    align-items: flex-start;
    justify-content: center;
  }

  .text-amount {
    font-size: 26px;
    font-weight: bold;
    text-shadow: 0 0 #000000;
  }
  
  .text-amount-title {
    font-size: 14px;
  }

  .delivery_fee_color {
    font-size: 10px;
  }

  .amazon_cart_button {
    margin: 0 auto;
    height: 50px;
    width: 240px;
    max-width: 240px;
    min-width: 240px;
    max-height: 50px;
  }  

  .c-footController_btn-primary .c-btn {
    height: 32.5px;
  }

  .c-formTable_head_row {
    padding-left: 5px; 
  }
  
  .sec-margin {
    margin-left: 5px;
  }
  
  .sec-margin-tag {
    margin-left: 10px;
  }

  .text-duration {
    font-size: 11px;
    text-align: center;
  }
  .text-day{
    font-size: 14px;
    font-weight: bolder;
  }

  .text-credit-info {
    font-size: 8px;
  }

  .modal_wrapper .modal_contents {
    text-align: left;
  }
  
  .modal_wrapper_in {
    padding: 30px 16px ;
    width:100%;
    height: auto;
  }

  .sec_div {
    height: 70px;
  }

  .sec_detail_img {
    width: 330px;
    height: 191px;
  }

  .sec_detail_title {
    font-size: 16px;
    font-weight: bold;
  }

  .sec_detail_content {
    font-size: 14px;
  }

  .sec_detail_link {
    font-size: 14px;
    color: #3333FF;
    text-decoration: none;
  }

} 

@media screen and (min-width:769px) {

  .only--sp {
    display: none !important;
  }

  .product-pc-div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .product-pc-div-child {
    width: 310px;
  }

  .product-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  } 

  .product-image_row-div {
    height: 130px;
    width: 130px;
    text-align: center;
  }

  .row_img {
    max-height: 130px;
    max-width: 130px;
  }

  .main-image-li {
    height: 310px;
    width: 310px;
    position: relative;
    margin-right: 10px;
  }

  .pc-image-main {
    max-height: 310px;
    max-width: 310px;
    height: 310px;
    width: auto;
  }  
  
  .sec-image-li {
    position: relative;
    vertical-align: bottom;
  }

  .product-name-div {
    font-size: 17px;
    font-weight: bold;
    line-height: 22px;
    text-shadow: 0.1px 0.1px 0.1px #000000;
  }

  .c-button-main {
    margin-left: 15px;
    text-align: center;
    text-decoration: none;
    background: #FFFFFF;
    width: 110px;
    height: 60px;
    position: relative;
    box-sizing: content-box;
  }

  .button-code-div {
    background-color: #54616B;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .button-price-div {
    text-align: center;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c-div-nostock {
    text-decoration: none;
    width: 110px;
    height: 60px;
    transform: translate(-50%,-50%);
    background-color: rgba(105, 105, 105, 0.5); /*#696969をRGBに変換*/
    position: absolute; 
    top:50%;
    left:50%;
  }

  .button-price {
    font-weight: bold;
    font-size: 16px;
  }

  .button-price-tax {
    font-size: 9px;
  }

  .product-sub-button-row {
    align-items: center;
    justify-content: center;
  }

  .product-sub-button-ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text-amount {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0 0 #000000;
  }
  
  .text-amount-title {
    font-size: 16px;
    text-align: center;
  }

  .amazon_cart_button {
    margin: 0 auto;
    height: 60px;
    width: 300px;
    min-height: 60px;
    max-width: 300px;
    min-width: 300px;
  }  

  .c-footController_btn-primary .c-btn {
    min-width: 300px;
    height: 39px;
    font-size: 16px;
  }

  .delivery_fee_color {
    font-size: 12px;
  }

  .c-formSection_body {
    width: 670px;
  }

  .c-formSection-border {
    margin-bottom: 5px;
  }
  
  .c-formTable_head_row {
    padding-left: 20px; 
  }

  .sec-margin {
    margin-left: 20px;
  }
  
  .sec-margin-tag {
    margin-left: 35px;
  }

  .sec-row {
    height: 100px;
  }

  .text-duration {
    font-size: 13px;
    text-align: center;
  }
  .text-day{
    font-size: 16px;
    font-weight: bolder;
  }

  .text-credit-info {
    font-size: 10px;
  }

  .modal_wrapper .modal_contents {
    text-align: left;
  }

  .modal_wrapper_in {
    padding: 30px 16px ;
    width:860px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .sec_detail_img {
    width: 700px;
    height: 407px;
  }

  .sec_detail_title {
    font-size: 20px;
    font-weight: bold;
  }

  .sec_detail_content {
    font-size: 16px;
  }

  .sec_detail_link {
    font-size: 16px;
    color: #3333FF;
    text-decoration: none;
  }

  .pc-input-section {
    display: block;
    text-align: center;
  }

  .pc-input-section-inline {
    text-align: left;
    display: inline-block;
  }
} 
