@charset UTF-8;
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

html {
    /*font-size: 62.5%;*/
}

body {
    width: 100%;
    max-width: 900px;
    margin: auto;
    /*margin-bottom: 45px;*/
    padding-bottom: 30px;
    box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.4);
    font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic Pro";
    font-size: 28.8px;
    font-weight: 400;
    line-height: 4.5rem;
}
img {
    width: 100%;
}


/* common parts */
.common_part {
    max-width: 700px;
    margin: 4rem auto;
    padding-top: 10rem;
    box-sizing: border-box;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
    color: #4E4E50;
    font-size: 28.8px;
    font-weight: 400;
    text-align: center;
    line-height: 4.5rem;
}
.common_part a {
    text-decoration: none;
}
.p_detail_title {
    margin-bottom: 40px;
    font-size: 43px;
    color: #4E4E50;
}
.p_detail {
    padding: 1rem 0rem;
    font-size: 28px;
    border: 1px solid #111;
}
.p_detail_box {
    padding: 3rem 3rem;
    border-bottom: 1px solid #111;
}
.p_detail_box:last-child {
    border: none;
}
.p_detail_bold, .caution_bold {
    font-weight: bold;
}
.p_detail_box p {
    margin-bottom: 2rem;
}
.warning {
    margin: 5rem auto;
    padding: 6rem 5rem;
    background-color: #fef6d5;
}
.warning_title {
    margin-bottom: 3rem;
    color: #9c555b;
    font-size: 43px;
    font-weight: bold;
}
.caution {
    position: relative;
    background: #fff;
    margin: 3rem auto;
}
.caution_container {
    width: 100%;
    margin: 5px auto 0px;
    text-align: left;
}
.caution_title {
    display: block;
    position: relative;
    background: #eeeeee;
    padding: 3rem;
    cursor: pointer;
    font-weight: bold;
}
.caution_title::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}
.caution_title.open::after {
    transform: rotate(-45deg);
}
.caution_title_red {
    color: #9c555b;
}

.caution_container input {
    display: none;
}
.caution_text {
    height: 0;
    margin: 0 0.5rem;
    padding: 0 20px;
    overflow: hidden;
    transition: all .3s;
}
/*.toggle:checked + .Label + .content {	/*開閉時*/
.caution_title.open ~ .caution_text {
	height: auto;
	padding: 20px ;
	transition: all .3s;
}
.caution_text p {
    margin: 0 0 15px;
}
.caution_text dt {
    margin-top: 10px;
    font-weight: bold;
}
.caution_text dd {
    padding: 2rem 2rem;
}
.caution_text_center {
    margin: 3rem auto;
    text-align: center;
}
.caution_payment {
    font-size: 20px;
    line-height: 2em;
}
.score_img, .creditcard, .gmo {
    width: 100%;
}
.caution_redbold {
    color: red;
    font-weight: bold;
}
.caution_payment li::before {
    content:  "●";
    margin-right: 5px;     
}
.about_payment {
    margin-top: 50px;
}
.caution_delivery li::before {
    content:  "●";            
    margin-right: 5px;          
}
footer {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    box-sizing: border-box;
    color: #666;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    text-align: center;
}
.footer_logo {
    width: 35%;
    min-width: 200px;
}
.footer_p {
    margin: 15px 40px;
    font-size: 14px;
    line-height: 1.6;
}
footer a {
    font-size: 13px;
    color: #4E4E50;
    text-decoration: none;
}
.footer_menu ul {
    width: 90%;
    margin: 30px auto;
    padding-left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer_menu li {
    position: relative;
    padding: 10px 20px;
}
.footer_menu li::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #4E4E50;
}
.footer_cr {
    font-size: 12px;
}


@media screen and (max-width: 768px) {
/* タブレット */
.common_part {
    max-width: 95%;
    font-size: max(3.2vw,14px);
}
.p_detail {
    font-size: max(3rem,14px);
}
.warning_title {
    font-size: max(4.5rem,16px);
}
.caution_title {
    font-size: max(3.2vw,16px);
}
.caution_payment {
    font-size: max(2rem,14px);
}
.footer_p {
    margin: 2rem;
}
.footer_menu li {
    padding: 1rem 3rem;
}

}




