/* 調整用スタイル */

body {
    font-family: Merriweather, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
    color: #000;
}
a {
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
.row {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.pc {
  display: block;
}
br.pc {
  display: inline;
}
.sp {
  display: none;
}
br.sp {
  display: none;
}

.footer {
  background-color: #f6f6f6;
  height: 400px;
  display: flex;
}

.footer div {
  margin: auto;
}


/* ヘッダー */
.header {
  background-color: #FFF;
  width: 100%;
  /*height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;*/
}
.header .row {
  padding: 10px 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*height: inherit;
  position: relative;*/
}
/* ヘッダーのロゴ部分 */
.site_id {
  width: 80%;
}
.site_id img {
    vertical-align: bottom;
}
nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}
nav ul li {
    padding: 0 0.5rem;
    border-right: 1px solid #000;
}
nav ul li:last-child {
    border-right: none;
}
header button {
    display: none;
}

.pc {
    width: 100%;
    height: 100vh;
    position: relative;
}
.this_is_not {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.this_is_not h1 {
    color: #dd5900;
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    white-space: nowrap;
}
.this_is_not h1 span::before {
    content: 'ー';
    display: inline;
    margin-right: 0.5rem;
}
.this_is_not h1 span::after {
    content: 'ー';
    display: inline;
    margin-left: 0.5rem;
}
.this_is_not p {
    text-align: center;
}
.this_is_not p.qr_code img {
    width: 200px;
}
@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }
    br.pc {
        display: none;
    }
    .sp {
        display: block;
    }
    br.sp {
        display: inline;
    }
    body {
        background-color: #fbd6a0;
    }
    header {
        position: fixed;
        top: 0;
        z-index: 1;
    }
    header .row {
        padding: 0 5%;
        height: 50px;
    }
    nav {
        width: 100%;
        height: calc(100vh - 50px);
        position: absolute;
        top: 50px;
        right: 0;
        left: 0;
        transform: translateX(100%);
        background-color: rgba(255,255,255,0.8);
        transition: ease .4s;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    nav ul li {
        width: 100%;
        padding: 0;
        text-align: center;
        border-right: none;
        border-bottom: 1px dotted #000;
    }
    nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem 0;
    }
    header button {
        display: block;
        width: 48px;
        height: 80%;
        z-index: 9999;
        border: none;
        background-color: transparent;
    }
    header button span {
        width: 100%;
        height: 1px;
        background-color: #000;
        position: relative;
        transition: ease .4s;
        display: block;
    }
    header button span:nth-child(1) {
        top: 0;
    }
    header button span:nth-child(2) {
        margin: 8px 0;
    }
    header button span:nth-child(3) {
        top: 0;
    }

    nav.active {
        transform: translateX(0);
    }
    header button.active span:nth-child(1) {
        top: 10px;
        transform: rotate(45deg);
    }
    header button.active span:nth-child(2) {
        opacity: 0;
    }
    header button.active span:nth-child(3) {
        top: -8px;
        transform: rotate(-45deg);
    }
    
/* #headline
*************************************/
    #headline {
        padding: 50px 0;
    }
    #headline figure {
        padding: 10px 0 0;
        width: 90%;
        margin: 0 auto;
    }
    #headline p {
        text-align: center;
        padding: 3rem 0 0;
        margin-bottom: 0;
    }
    #headline p a {
        display: inline-block;
        background-image: linear-gradient(114deg, rgba(227, 156, 165, 1), rgba(227, 0, 18, 1) 90%);
        color: #FFF;
        font-weight: bold;
        font-size: 2rem;
        padding: 1rem 2rem;
        border: 6px solid #FFF;
        box-shadow: 7px 7px 5px -5px #ba2020;
        border-radius: 6rem;
    }
    #headline p span {
        display: inline-block;
        background-image: linear-gradient(114deg, rgba(227, 156, 165, 1), rgba(227, 0, 18, 1) 90%);
        color: #FFF;
        font-weight: bold;
        font-size: 1.9rem;
        line-height: 2.4rem;
        padding: 1rem;
        border: 6px solid #FFF;
        box-shadow: 7px 7px 5px -5px #ba2020;
        border-radius: 6rem;
    }
    
/* #prize
*************************************/
    #prize .row {
        padding: 0 0 3rem;
    }
    #prize .row p:nth-of-type(1) {
        text-align: center;
        color: #6A3906;
        font-weight: bold;
        font-size: 1.05rem;
        line-height: 1.8rem;
        font-feature-settings: 'palt';
    }
    #prize .row img:nth-of-type(4) {
        margin-bottom: 30px;
    }
    #shoplist .row {
        background-color: #FFF;
        padding: 2rem 5%;
        text-align: center;
    }
	#shoplist .row h2 {
		text-align: center;
	}
	#shoplist .row h2 img {
		width: 80%;
	}
    #shoplist .row h3 {
        display: block;
        width: 80%;
        margin: 0 auto 1.5rem;
        border-bottom: 1px solid #000;
        font-size: 1.25rem;
        font-weight: bold;
        text-align: center;
        padding: 2rem 0 0.5rem;
    }
    #shoplist img.logo1 {
        width: 45%;
    }
    #shoplist img.logo4 {
        width: 35%;
    }
    #cp_about .row {
        background-color: #FFF;
        padding: 2rem 5% 1rem;
        margin-bottom: 2rem;
    }
    #cp_about .row h2 {
        margin-bottom: 1.4rem;
		text-align: center;
    }
    #cp_about .row h2 img {
        width: 80%;
    }
    #cp_about .row p {
        margin-bottom: 1.4rem;
        text-align: justify;
    }
    #cp_about .row h3 {
        background-color: #F00;
        color: #FFF;
        text-align: center;
        padding: 0.2rem 0;
        border-radius: 8px;
        letter-spacing: 0.4rem;
        margin-bottom: 1rem;
    }
    #cp_about .row h4 {
        color: #F00;
    }
    #cp_about .row h4::before {
        content: '◆';
        display: inline;
        padding-right: 0.1rem;
    }
    #cp_about .row ul {
        list-style: disc;
        padding-left: 1.1rem;
        margin-bottom: 1.4rem;
    }
    #cp_about .row ul li {
        list-style: disc;
    }
    #cp_about .row ol {
        list-style: decimal;
    }
    #cp_about .row ol > li:first-child::before {
        content: '①';
        display: inline;
        padding-right: 0.1rem;
    }
    #cp_about .row ol > li:nth-child(2)::before {
        content: '②';
        display: inline;
        padding-right: 0.1rem;
    }
    #cp_about .row ol > li ul {
        padding-left: 2.1rem;
    }
    #cp_about .row ol > li ul li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    #cp_about .row ol > li ul li p {
        margin-bottom: 0;
        padding-left: 1rem;
    }
    #photographing .row {
        background-color: #FFF;
        padding: 2rem 5%;
        margin-bottom: 2rem;
    }
    #photographing .row h2 {
        margin-bottom: 1.4rem;
		text-align: center;
    }
	#photographing .row h2 img {
		width: 80%;
	}
    #photographing .row .p_set {
        display: flex;
        justify-content: space-between;
    }
    #photographing .row .p_set.final {
        align-items: flex-end;
        margin-bottom: 2rem;
    }
    #photographing .row .p_set img {
        width: 50%;
    }
    #photographing .row .p_set p {
        font-size: 0.85rem;
        line-height: 1.4rem;
        margin-bottom: 0;
        width: 45%;
    }
    #photographing .row .item_box img.arrow {
        display: block;
        width: 50px;
        height: auto;
        margin: 20px auto;
    }
    #photographing .row h3 {
        background-color: #F00;
        color: #FFF;
        text-align: center;
        padding: 0.2rem 0;
        border-radius: 8px;
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
    }
    #photographing .row .item_box ul:nth-of-type(1) {
        
        padding-left: 1.1rem;
    }
    #photographing .row .item_box ul:nth-of-type(1) li {
        list-style: disc;
    }
    #photographing .row .item_box ol {
        padding: 1rem 0 1rem 1.1rem;
        margin-bottom: 1.5rem;
    }
    #photographing .row .item_box ol li {
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.9rem;
    }
    #photographing .row .item_box ol li:first-child::before {
        content: '';
        display: inline-block;
        width: 1.2rem;
        height: 1.2rem;
        margin-right: 0.3rem;
        margin-bottom: -0.15rem;
        background-image: url("../images/list1@2x.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
    #photographing .row .item_box ol li:nth-child(2)::before {
        content: '';
        display: inline-block;
        width: 1.2rem;
        height: 1.2rem;
        margin-right: 0.3rem;
        margin-bottom: -0.15rem;
        background-image: url("../images/list2@2x.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
    #photographing .row .item_box ol li:nth-child(3)::before {
        content: '';
        display: inline-block;
        width: 1.2rem;
        height: 1.2rem;
        margin-right: 0.3rem;
        margin-bottom: -0.15rem;
        background-image: url("../images/list3@2x.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
    #photographing .row .item_box h4 {
        text-align: center;
        font-weight: normal;
        margin-bottom: 1rem;
    }
    #photographing .row .item_box h4::before {
        content: '-';
        display: inline;
        margin-right: 1rem;
    }
    #photographing .row .item_box h4::after {
        content: '-';
        display: inline;
        margin-left: 1rem;
    }
    #photographing .row .item_box ul.photo_good {
        display: flex;
        justify-content: space-between;
        margin-bottom: 3rem;
    }
    #photographing .row .item_box ul.photo_good li {
        width: 48%;
    }
    #photographing .row .item_box ul.photo_good li figure figcaption {
        font-size: 0.85rem;
        line-height: 1.2rem;
    }
    #photographing .row .item_box ul.photo_good + p {
        text-align: center;
        color: #F00;
        margin-bottom: 1rem;
    }
    #formarea .row {
        background-color: #FFF;
        padding: 2rem 5%;
        margin-bottom: 2rem;
    }
    #formarea .row h2 {
        margin-bottom: 1.4rem;
		text-align: center;
    }
	#formarea .row h2 img {
		width: 80%;
	}
    #formarea .row .item_box form p:nth-of-type(1) {
        font-feature-settings: 'palt';
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    #formarea .row .item_box form p span {
        color: #F00;
    }
    #formarea .row .item_box form p i.fusoku {
        font-style: normal;
        font-size: 0.85rem;
    }
    #formarea .row .item_box form input[type="text"],
    #formarea .row .item_box form input[type="number"],
    #formarea .row .item_box form input[type="tel"] {
        width: 95%;
        height: 1.1rem;
        margin-bottom: 1rem;
    }
    #formarea .row .item_box form select,
    #formarea .row .item_box form input[type="file"] {
        margin-bottom: 1rem;
    }
    #formarea .row .item_box form textarea {
        width: 95% !important;
        height: 7rem !important;
        margin-bottom: 1rem;
    }
    #formarea .row .item_box form .kojinjoho {
        font-size: 0.9rem;
        line-height: 1.4rem;
        text-align: justify;
    }
    #formarea .row .item_box form .kojinjoho + p {
        font-size: 1.05rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    #formarea .row .item_box form button[type="submit"] {
        display: block;
        background-image: linear-gradient(114deg, rgba(227, 156, 165, 1), rgba(227, 0, 18, 1) 90%);
        color: #FFF;
        font-weight: bold;
        font-size: 2rem;
        padding: 0.5rem 2rem;
        border: 6px solid #FFF;
        box-shadow: 7px 7px 5px -5px #ba2020;
        border-radius: 6rem;
        margin: 0 auto 1rem;
    }
    #formarea .row .item_box .contact_box h3 {
        color: #F00;
        font-weight: bold;
        font-size: 2em;
        margin-bottom: 0;
        font-feature-settings: "palt";
        text-align: center;
    }
    #formarea .row .item_box .contact_box h3 span {
        font-size: 0.6em;
    }
    #formarea .row .item_box .contact_box p.last-time {
        text-align: right;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .contact_box h5 {
        font-size: 1.6em;
        margin-bottom: 0.6em;
        font-weight: bold;
        text-align: center;
    }
    .contact_box h5 + p {
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.4rem;
        margin-bottom: 2rem;
    }
    .footer_logo {
        display: flex;
        justify-content: center;
        padding-left: 0;
        list-style: none;
    }
    .footer_logo li {
        width: 48%;
    }
    
/* Thanks Page
*************************************/
    #thanksbox {
        background-color: #FFF;
        width: 100%;
        height: 100vh;
        position: relative;
    }
    #thanksbox .row {
        width: 90%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #thanksbox .row h2 {
        font-size: 1.4rem;
        text-align: center;
        font-weight: bold;
        line-height: 2rem;
        color: #DE0000;
        margin-bottom: 1rem;
    }
}
