/*---------------------------------
tounouiimono custom
目次

0.共通スタイル
1.TOP
2.下層（商品ページ）
3.下層（住所入力ページ）
4.thanks
5.MW WP form 
---------------------------------*/

/*=================================
/
0.共通
/
=================================*/
html { font-size: 62.5%; }

body { 
    font-size: 1.4rem; 
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #525B5C;
} 

.wrapper {
    background: url('../img/bg-imono.jpg') repeat #b19e61;
    background-size: 160px;
    background-attachment: fixed;
}

a {
   text-decoration: none; 
   transition: all .2s ease-in-out;
   color: #1c2161;
}

a:hover {
    opacity: .9;
}   

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


.h2-ttl {
    font-size: 2.2rem;
    color: #1c2161;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width: 749px) {
    .h2-ttl {
        font-size: 2.0rem;
    }  
}    

.txt {
    font-size: 1.4rem;   
}

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

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

.txt-r {
    text-align: right;
}

.txt-min {
    max-width: 390px;
    margin: auto;
}

.border {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #EFEFEF;
}

.code-attention {
    font-size: 1.2rem;
    color: #AD0032!important;
    letter-spacing: 0.01em;
}

.code-attention strong {
    font-weight: bold;
    background: #e0eff9;
    padding: 2px 3px;
}    

#footer {
    margin-top: 40px;
    padding: 14px 15px 15px 15px;
    background-color: #FFF;
}

#footer #copyright {
    max-width: 1100px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.1rem;
    text-align: center;
}

#footer #copyright .textlink {
    text-decoration: underline;
}


/* 動き共通 */

.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration: 0.6s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    @keyframes fadeUpAnime{
      from {
      opacity: 0;
      transform: translateY(100px);
      }
    
      to {
      opacity: 1;
      transform: translateY(0);
      }
}

.delay-time{
    animation-delay: 0.2s;
}


.poyo {
    animation: poyo .8s ease-in;
    opacity: 1;
  }
  @keyframes poyo {
    0% {
      transform: scale(1);
    }
    17% {
        transform: scale(1.2);
      }
    50% {
      transform: scale(0.92);
    }
    80% {
        transform: scale(1.1);
      }
    100% {
        transform: scale(1);
    }
}


@media screen and (max-width: 749px) {

}



/* loading first */

.loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
  }
  
  .loading.is-active {
    opacity: 0;
    visibility: hidden;
  }
  
  .loading-animation {
    width: 100vw;
    height: 100vh;
    transition: all 1.6s ease-in-out;
    background-color: #FFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
  }

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

  .loading-animation__inner div {
    padding: 0.9vw 1.2vw;
  }  

  
  .loading-animation.is-active {
    opacity: 1;
    visibility: visible;
  }


/*=================================
/
1.TOP
/
=================================*/

.home #header {
    height: 0;
}

.header-h1--front {
    text-indent: 100%; 
    white-space: nowrap; 
    overflow: hidden; 
}


/* front-main */

.front-main {
    position: relative;
    width: 100%;
    min-height: 100px;
}

.front-main__herov {
    max-width: 780px;
    padding-top: 40px;
    padding-bottom: 140px;
    margin: auto;
}

@media screen and (max-width: 749px) {

    .front-main__herov {
        padding-top: 0;
        padding-bottom: calc(100vw - 58.9vw);
    }   

}

.front-main__herov__inner {
    position: relative;
    width: 100%;
    padding-bottom: 48.7%; /*(380/780)*/
    background-color: #FFF;
    background: url('../img/location-illust.jpg') top center no-repeat;
    background-size: contain;
    border-radius: 5px;
}   

@media screen and (max-width: 749px) {
    .front-main__herov__inner {
        padding-bottom: 58.9vw; /*(221/375)*/
        background: url('../img/sp-location-illust.jpg') top center no-repeat;
        background-size: contain;
        border-radius: 0;
    }   
}    

.front-main__herov__inner__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin: auto;
}

@media screen and (max-width: 749px) {
    .front-main__herov__inner__logo {
        top: 42%;
        width: 32.0vw;
    }       
}    

.float-tsutsumu {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: table;
    transform: translateX(-50%);
}

@media screen and (max-width: 749px) {
    .float-tsutsumu {
        width: calc(100% - 12%);
    }   
}    


.float-tsutsumu__cell {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

@media screen and (max-width: 749px) {
    .float-tsutsumu__cell {
        vertical-align: bottom;
    }  
    
    .float-tsutsumu__cell.cell-l {
        width: 80%;
    } 
    .float-tsutsumu__cell.cell-r {
    }   
}    

.float-tsutsumu__cell.cell-l {
    z-index: 1;
}
.float-tsutsumu__cell.cell-r {
    z-index: 2;
}

.float-tsutsumu__pop {
    position: relative;
    padding: 15px 12px 15px 18px;
    border: 2px solid #1c2161;
    border-radius: 4px;
    background-color: #FFF;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1c2161;
    transform: translateX(-11px) translateY(-52px);
    z-index: 0;
}

@media screen and (max-width: 749px) {
    .float-tsutsumu__pop {
        padding: 13px 10px 15px 18px;
        transform: translateX(-14px) translateY(-64px);
    }

}   

.float-tsutsumu__pop::after {
    content: url('../img/fukidashi-stick.svg');
    display: block;
    position: absolute;
    bottom: 2px;
    left: 25px;
    width: 20px;
    transform: translateY(100%);
}    


.float-tsutsumu__img {
    width: 53px;
    height: 171px;
    z-index: 100;
}


@media screen and (max-width: 749px) {
    .float-tsutsumu__img {
        transform: translateX(12px);
    }
}       

.float-tsutsumu__nametag {
    position: absolute;
    bottom: 16px;
    right: 11px;
    width: 72px;
    height: 34px;
    transform: translateX(100%);
}


/* front-content */


.front-content {
    padding-top: 30px;
    padding-bottom: 40px;
    background-color: #FFF;
}

.front-content .h2-ttl {
    margin-bottom: 12px;
}    

.product-list-wrap {
    max-width: 702px;
    width: 100%;
    margin: 32px auto;
}

@media screen and (max-width: 749px) {
    .product-list-wrap {
        padding-left: 3.6vw;
        padding-right: 3.6vw;
    }
}   

.product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-list::before{
    content: "";
    display: block;
    width: 24%;
    order: 1;
}

.product-list::after{
    content: "";
    display: block;
    width: 24%;
}

.product-list__item {
    position: relative;
    width: 24.0%;
    margin-bottom: 12px;
    border: 1px solid #EFEFEF;
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 749px) {
    .product-list__item {
        width: 48.4%;
    }    
}   

.product-list__item a {
   
}

.product-list__item a:link {
    display: block;
    color: #1c2161;
}
.product-list__item a:visited {
    color: #1c2161;
}

.product-list__item a::after {
    position: absolute;
    content: url('../img/gift-flag.svg');
    display: block;
    width: 57px;
    top: 0;
    left: 0;
}

.product-list__item img{
    width: 100%;
}    

.product-list__item--desc {
    padding: 6px 9px 28px;
}

@media screen and (max-width: 749px) {
    .product-list__item--desc {
        padding: 12px 9px 28px;
    }
}   

.product-list__item--ttl {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.product-list__item--maker {
    margin-top: 0.6rem;
    font-size: 1.2rem;
    font-weight: 400;
    color: #525B5C;
    line-height: 1.2;
}


/* modal [backup] */

#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.modal-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
}

.modal-single-wrap {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 40px;
    background: #F8F8F8;
}

.modal-single-inner {
    padding: 40px;
    background: #FFF;
    max-height: calc(100vh - 100px);
    overflow-y: scroll;
}

.modal-closebtn {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    transform: translateX(-35%) translateY(40%);
    cursor: pointer;
}

@media screen and (max-width: 749px) {

}

/*=================================
/
2.下層
/
=================================*/

.link-back {
    position: absolute;
    top: 15px;
    left: 20px;
    display: block;
    color: #1c2161;
    text-align: left;
    line-height: 1.3;
    font-size: 1.3rem;
}

.link-back img {
    height: 1.3rem;
    margin-right: 0.6rem;
    vertical-align: text-bottom;
    transform: rotate(180deg);
}   


/* flowbox */


.flow-box {
    width: 100%;
    margin: 0 auto 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EFEFEF;
}

.flow-box__inner {
    max-width: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 auto;
}

.flow-box__inner__item {
    width: 30%;
    text-align: center;
}

.flow-box__inner__item,
.flow-box__inner__item a {
    color: #BEBEBE;
}   

.flow-box__inner__item-current {
    color:#1c2161;
}    

.flow-box__inner__item svg {
    display: block;
    max-width: 36px;
    margin: 0 auto 3px;
}

.flow-box__inner__item span {
    display: block;
    font-size: 1.0rem;
}    

.flow-box__inner .arrow {
    margin-top: 8px;
}

.header-h1 {
    width: 100%;
    z-index: 10;
}

.header-h1 a {
    display: block;
    margin: auto;
    width: 78px;
}   

.header-h1 a img {
    position: relative;
    z-index: 100;
}

.header-h1 a:hover {
    opacity: 1;
}


.page-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: -40px auto 0;
    padding-top: 42px;
    border-radius: 5px;
    background-color: #FFF;
}

@media screen and (max-width: 749px) {

    .page-wrap {
        padding-left: 5vw;
        padding-right: 5vw;
    }   

}    

.product-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
}

@media screen and (max-width: 749px) {
    .product-hero {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0;
        padding-left: 5vw;
        padding-right: 5vw;
    }
}


.slider-block {
    width: 48.0%;
}

@media screen and (max-width: 749px) {
    .slider-block {
        width: 100%;
    }
}


.title-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    width: 50.0%;
    height: 100%;
    padding-left: 20px;
}

@media screen and (max-width: 749px) {
    .title-block {
        width: 100%;
        margin-top: 9.3vw;
        padding-left: 0;
    }
}

.p-title {
    width: 100%;
    font-size: 2.4rem;
    color: #1c2161;
    font-weight: 700;
}

.p-maker {
    width: 100%;
    font-size: 1.6rem;
    color: #525B5C;
}

.p-submit-wrap {
    width: 100%;
}

.p-submit-wrap-inner {
    position: relative;
}

.p-submit-wrap label{
    display: block;
    position: absolute;
    left: 50%;
    text-align: center;
    bottom: 1.6rem;
    color: #FFF;
    font-size: 1.4rem;
    transform: translateX(-50%);
}

.p-submit {
    display: block;
    width: 100%;
    margin: 30px auto 24px;
    padding: 1.8rem 1.5em calc(1.5em + 1.4rem) 1.5em;
    border: none;
    border-radius: 5px!important;
    background-color: #AD0032;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    appearance: none;
    transition: all .2s ease-in-out;
}

.p-submit:hover {
    background-color: #CC2D5B;
}    


/* slider */

.splide__arrow {
    background: #1c2161;
    opacity: 1;
}

.splide__arrow--prev {
    left: 0;
}

.splide__arrow--next {
    right: 0;
}

.splide__arrow svg {
    fill: #FFF;
}    

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splide__slide {
    opacity: 0.6;
}
 
.splide__slide.is-active {
    opacity: 1;
}

.main-slider img {
    border-radius: 8px;
}

.thumbnail-slider {
    margin-top: 10px;
}


/* product description */

.product__description {
    max-width: calc(100% - 80px);
    margin: auto;
    border-top: 1px solid #EFEFEF;
    padding-bottom: 24px;
}

@media screen and (max-width: 749px) {

    .product__description {
        max-width: 100%;
        margin-top: 5vw;
        padding-left: 5vw;
        padding-right: 5vw;
    }

}

.product__description blockquote {
    position: relative;
    width: 100%;
    margin: 0.4rem auto;
    padding:  25vw 3.2rem 2.0rem;
    font-size: 1.2rem!important;
    border: 1px dotted #1c2161;
    border-radius: 1.2rem;
    color: #1c2161;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}    

.product__description blockquote p {
    font-size: 1.2rem!important;
    font-weight: 700;
    margin-top: 0.6em;
}    

.product__description blockquote::before {
    content: ' ';
    display: block;
    position: absolute;
    background-image: url('../img/img-kokooshi.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    top: 2.0rem;
    left: 50%;
    width: 46vw;
    /* height: auto; */
    height: 19vw;
    padding: 0 2%;
    transform: translateX(-50%);
}  

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

    .product__description blockquote {
        padding: 130px 3.2rem 2.0rem;
    }   

    .product__description blockquote::before {
        max-width: 240px;
        width: 40%;
        height: 100px;
        padding: 10px 20px;
    }    

}    


.product__description h2 {
    margin-top: 2.4rem;
    margin-bottom: 2.2rem;
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 1.6;
    text-align: center;
    color: #1c2161;
}

.product__description h1::before,
.product__description h2::before {
    content: ' ';
    display: block;
    height: 1px;
    background-color: #EFEFEF;
    margin-bottom: 1.6rem;
}


.product__description h1::after,
.product__description h2::after {
    content: ' ';
    display: block;
    height: 1px;
    background-color: #EFEFEF;
    margin-top: 1.6rem;
}

h2.main-ttl {
    margin: 2.4rem 0 1.2rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
}

h2.main-ttl::before,
h2.main-ttl::after {
    display: none;
}

.product__description h3 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    border-left: 3px solid #EFEFEF;
    padding-left: 1.0em;
    color: #1c2161;
} 


.product__description h4 {
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    color: #1c2161;
} 

.product__description p {
    font-size: 1.4rem;
    margin-bottom: 0.6em;
    color: #1c2161;
}

.product__description p.caption {
    margin-top: -1.4em;
    margin-bottom: 2em;
    text-align: center;
}

.product__description p.main-desc {
    margin-bottom: 2.4rem;
    font-weight: normal;
    font-size: 1.4rem;
}    


.product__description img {
    width: 100%;
    margin-top: 2em;
    margin-bottom: 2em!important;
}

.product__description img + .caption {
    margin-top: -2.2em!important;
    margin-bottom: 3.2em;
    font-size: 1.3rem;
}

.product__description ol {
    counter-reset:num;
    list-style-type: none!important;
    padding:0;
    margin:0;
    margin-bottom: 2.5rem;
}
.product__description ol li {
    padding-left: 1.4em;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: #1c2161;
}

.product__description ol li:before {
    counter-increment: num;
    content: counter(num);
    margin-right: 1em;
    color: #1c2161;
    font-weight: 700;
}

.product__description ul {
    margin: 1.6em 0;
    margin-left: 1em;
    margin-bottom: 2.5rem;
}

.product__description ul li{
    list-style-type: circle;
    margin-bottom: 0.4rem;
    color: #1c2161;
    font-size: 1.4rem;
}   

.product__description a {
    position: relative;
    display: block;
    border: 2px solid #1c2161;
    padding: 2.4rem 1.8rem;
    width: 100%;
    font-size: 1.6rem;
    color: #1c2161;
    text-align: center;
    transition: all .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.product__description a:hover {
    opacity: 0.92;
}     

.product__description a::after {
    content: ' ';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 1.2rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5.5px 0 5.5px 6px;
    border-color: transparent transparent transparent #1c2161;
    transform: translateY(-50%);
}   

.product__description dl {
    position: relative;
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
    font-size: 1.3rem;
}

.product__description dl dt {
    position: absolute;
    left: 0;
    width: 29%;
    font-weight: 700;
    color: #1c2161;
    transform: translateY(0.8em);
}

.product__description dl dd {
    margin: 0;
    padding-left: 30%;
    width: 100%;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    color: #1c2161;
    border-top: 1px dotted #1c2161;
}    

.product__description dl dd:last-child {
    border-bottom: 1px dotted #1c2161;
}



.product__description .warning {
    margin: 2.4rem 0;
    background-color: #e0eff9;
    padding: 2.0rem 2.0rem 2.4rem;
    font-size: 1.4rem;
    color: #1c2161;
    border-radius: 8px;
}

.product__description .warning strong {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    align-items: center;
    padding-left: 3.2rem;
}  

.product__description .warning strong::before {
    position: absolute;
    content: ' ';
    top: 0;
    left: 0;
    display: inline-block;
    background-image: url('../img/tono-warning.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 1.5em;
    height: 1.5em;
}    


/*=================================
/
3.下層（住所入力ページ）
/
=================================*/

.page-adress-ttl {
    font-size: 1.9rem;
    text-align: center;
    font-weight: 700;
    color: #1c2161;
}

.page-adress-ttl__attention {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #DD0000;
    text-align: center;
    line-height: 1.4;
}


.form-custom {
    max-width: 420px;
    margin: auto;
    padding: 12px 0;
    border-bottom: 1px solid #EFEFEF;
}

.form-custom li {
    margin-bottom: 15px;
}   

.form-custom li label {
    display: block;
    margin-bottom: 14px;
    padding: 1px 5px;
    border-left: 4px solid #1c2161;
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: #1c2161;
}   

.form-custom li label.label-big {
    padding: 1px 0px;
    border: none;
    font-size: 1.4rem;
    font-weight: 700;
}

.form-custom .form-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}    

.form-custom .form-flex div {
    width: 48%;
}    

.selected-item-name {
    margin-bottom: 2.4rem;
    font-weight: 700;
    font-size: 1.8rem;
    color: #1c2161;
}

.form-custom input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #BEBEBE;
    border-radius: 2px;
} 

.form-custom select {
    padding: 12px 10px;
    border: 1px solid #BEBEBE;
    border-radius: 2px;
}

.form-custom .all-submit {
    display: block;
    width: 100%;
    margin: 30px auto;
    padding: 1.8rem 1.5em;
    border: none;
    border-radius: 5px!important;
    background-color: #FFC80F;
    font-size: 1.8rem;
    font-weight: bold;
    color: #1c2161;
    cursor: pointer;
    appearance: none;
    transition: all .2s ease-in-out;
}

.form-custom .all-submit:hover {
    background-color: #B5FF0F;
}    


/*=================================
/
4.thanks
/
=================================*/

#thanksGifall {
    display: block;
    opacity: 1;
    transition: all 0.62s cubic-bezier(.17,.67,.68,.7);
}

#thanksGifall.hide {
    opacity: 0;
    display: none;
}

.thanks-layer-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #FFF;
    z-index: 1000;
}

.thanks-layer {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.thanks-layer__inner {
    width: 42.0vw;
    max-width: 500px;
    height: auto;
}

@media screen and (max-width: 749px) {
    .thanks-layer__inner {
        width: 83.0vw;
    }
}   

.thanks-layer__inner img { 
    width: 100%;
}  


/* main */

.thanks-description {
    width: calc(100% - 80px);
    margin: auto;
    text-align: center;
    color: #1c2161;
    padding-bottom: 55px;
}

@media screen and (max-width: 749px) {
    .thanks-description {
        width: 100%;
    }    
}    

.thanks-ttl {
    max-width: 176px;
    margin: auto;
}

.thanks-intro {
    margin-top: 40px;
    font-size: 1.6rem;
    font-weight: 700;
}

@media screen and (max-width: 749px) {
    .thanks-intro {
        margin-top: 20px;
    }    
}    

.thanks-attention {
    font-size: 1.3rem;
    max-width: 490px;
    margin: 20px auto;
}

.gifuview {
    max-width: 552px;
    margin: auto;
}

.about-tono {
    margin-top: 30px;
}

.about-tono-ttl {
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1c2161;
    font-size: 1.6rem;
    text-align: left;
}

.about-tono-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
}

.about-tono-flex__half {
    width: 47%;
}

.about-tono p {
    font-size: 1.4rem;
    text-align: left;
}

@media screen and (max-width: 749px) {
    .about-tono-flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    } 
    .about-tono-flex__half {
        width: 100%;
        margin-top: 20px;
    }   

    .about-tono-flex.disorder {
        flex-direction: column-reverse;
    }    
}  


/*=================================
/
5. contactform
/
=================================*/


/*―――――表示―――――*/

.form-custom option,
.form-custom textarea,
.form-custom input[type=text],
.form-custom input[type=email],
.form-custom input[type=tel],
.form-custom input[type=search],
.form-custom input[type=url] {
    width: 100%;
    padding: 10px;
    border: 1px solid #BEBEBE;
    border-radius: 2px;
}

.form-custom input[type=checkbox] {
    border: 1px solid #BEBEBE;
}

.wpcf7-list-item {
    margin-left: ;
}

/*――「送信ボタン」デザイン――*/


.form-custom .all-submit {
    display: block;
    width: 100%;
    margin: 30px auto;
    padding: 1.8rem 1.5em;
    border: none;
    border-radius: 5px!important;
    background-color: #FFC80F;
    font-size: 1.8rem;
    font-weight: bold;
    color: #1c2161;
    cursor: pointer;
    appearance: none;
    transition: all .2s ease-in-out;
}

.form-custom .all-submit:hover {
    background-color: #B5FF0F;
}    



/*―――「必須」デザイン―――*/
label.required::after {
    content: '*';
    display: inline-block;
    font-size:0.9em;
    padding-left: 3px;
    color: #DD0000;
}


/*―― エラーメッセージ ――*/

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #CC2D5B;
    padding: 1.2rem;
}



/*ーーーーーーーーーーーーーーーー*/



/*=================================
/
5.shop
/
=================================*/

.shop-content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
}

@media screen and (max-width: 749px) {
    .shop-content {
        padding-left: 0;
        padding-right: 0;
    }    
}   

#shop h1 {
    margin: 20px 0;
    font-size: 2.0rem;
    font-weight: 700;
    color: #1c2161;
    text-align: center;
}

#shop table a { 
    text-decoration: underline;
}    


#shop table {
    width: 100%;
    font-size: 1.4rem;
    color: #1c2161;
}

#shop table tr {
    border-bottom: 1px solid #EFEFEF;
}

#shop table th {
    position: relative;
    width: 30%;
    padding: 2.0rem 0.8rem;
    text-align: left;
}

#shop table td {
    width: 70%;
    padding: 2.0rem 0.8rem;
}