@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');

/*additional reset
---------------------------------------------------*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body.safari #content,
body.safari #footer {
    /*サファリでリンク先から戻った時文字が拡大する対応*/
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    margin: 0;
    font-size: 17px;
    background-color: #f0f0f0;
}

a:hover,
a:active {
    text-decoration: none;
}

/*初期設定
----------------------------------------------------*/
#wrapper {
    padding: 0;
    overflow: hidden;
    margin: auto;
    position: relative;
    background-color: #fff;
}

.content {
    display: block;
    margin: 0 auto;
}

@media screen and (min-width:640px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }
}

@media screen and (max-width:640px) {#wrapper {
    padding: 0 0 20px 0;
}
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    #wrapper {
        width: 100%;
    }
}

img {
    width: 100%;
    line-height: 0;
}

h1,h2{
    margin: 0;
}


/*layout
----------------------------------------------------*/

.header{
    background-color: #0000bb;
    width: 100%;
}
.header_inner{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
}
.header_inner .logo{
    width: 15%;
    height: 15%;
}
.header_inner .top_btn{
    width: 20%;
}
.header_inner .top_btn img{
    width: 100%;
    margin: auto;
    padding-top: 4px;
}

@media screen and (max-width:640px) {
    .header{
        background-color: #0000bb;
        width: 100%;
    }
    .header_inner{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    
        padding: 7px;
    }
    .header_inner .logo{
        width: 40%;
        height: 40%;
    }
    .header_inner .top_btn{
        width: 55%;
    }
    .header_inner .top_btn img{
        width: 100%;
        margin: auto;
        padding-top: 4px;
    }
}
.campaign_pc{
    background-image: url(../img/campaign_img02_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 15px 0 0;
    position: relative;
}
.campaign_pc img{
    width: 35%;
    margin: auto;
}
.campaign_img03_pc{
    position: absolute;
    bottom: -20px;
    right: 0;
    left: 0;
    margin: auto;
    width: 200px!important;
}
@media screen and (max-width:640px) {
    .campaign_pc{
        background: none;
        padding: 0;
    }
}
.btn{
    display: flex;
    justify-content: center;
    margin: auto;
}
.cta {
    margin: 40px auto;
    width: 95%;
}
.cta p {
    width: 100%;
    display: block;
    margin: 0 auto 10px;
    box-sizing: border-box;
    text-align: center;
    color: #1b1b1b;
    font-weight: bold;
    font-size: 1.5rem;
}
.red{
    color: red;
}
.flash{
    animation: flash 1.5s linear infinite;
}
@keyframes flash {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
#btn_animation01 .tell_btn {
  display: block;
  position: relative;
  width: 95%;
  height: 134px;
  background-image: linear-gradient(#1be620, #00930a);
  color: #fbfbfb;
  margin: auto;
  padding: 20px 10px;
  border-radius: 100px;
    overflow: hidden;
    animation: btn_animation01 1.5s infinite;
    box-shadow: 0 10px 0 #005506;
}
.tell_btn img{
    width: 90%;
    display: block;
    margin: auto;
}
#btn_animation02 .mail_btn {
  display: flex;
  position: relative;
  width: 95%;
  height: 134px;
  background-image: linear-gradient(#f28e26, #f75612);
  color: #fbfbfb;
  margin: auto;
  padding: 20px 10px;
  border-radius: 100px;
  overflow: hidden;
  animation: btn_animation02 1.5s infinite;
  box-shadow: 0 10px 0 #852800;
}
.mail_btn img{
    width: 80%;
    display: block;
    margin: auto;
}
@keyframes btn_animation01 {
    0% {
        box-shadow: 0 10px 0 #005506;
        top: 0px;
    }
    10% {
        box-shadow: 0 0 0 #005506;
        top: 10px;
    }
    20% {
        box-shadow: 0 10px 0 #005506;
        top: 0px;
    }
}
@keyframes btn_animation02 {
    0% {
        box-shadow: 0 10px 0 #852800;
        top: 0px;
    }
    10% {
        box-shadow: 0 0 0 #852800;
        top: 10px;
    }
    20% {
        box-shadow: 0 10px 0 #852800;
        top: 0px;
    }
}

@media screen and (max-width:640px) {
    .btn{
        display: block;
    }
    .cta {
        margin: 20px auto;
    }
    #btn_animation01 .tell_btn {
      height: auto;
    }
    .tell_btn img{
        width: 90%;
        display: block;
        margin: auto;
    }
    #btn_animation02 .mail_btn {
      height: auto;
      margin: 20px auto 30px;
    }
    .mail_btn img{
        width: 80%;
        display: block;
        margin: auto;
    }
}

.card_pc{
    width: 1000px;
    margin: 40px auto 0;
}

.omakase{
    background-color: #fffdd9;
}
.omakase_title{
    background-image: url(../img/omakase_img02_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    margin-top: 60px;
}
.omakase_title img{
    width: 600px;
    padding: 20px 0 15px;
    margin: auto;
}
.omakase_img03_pc{
    max-width: 1000px;
    width: 90%;
    margin: 50px auto 0;
}
@media screen and (max-width:640px) {
    .omakase_title{
        margin-top: 40px;
    }
}

.matte{
    background-image: url(../img/matte_img02_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: -9% 0 0;
}
.matte img{
    max-width: 1000px;
    width: 90%;
    margin: auto;
    padding: 3% 0 10%;
}
@media screen and (max-width:640px) {
    .matte{
        display: none;
    }
}

.syuuriya_img01_pc{
    max-width: 1000px;
    width: 90%;
    margin: -6% auto 0;
}

.service{
    background-image: url(../img/service_img02_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 4% 0 0;
}
.service img{
    max-width: 800px;
    width: 90%;
    margin: auto;
    padding: 5% 0 10%;
}
@media screen and (max-width:640px) {
    .service{
        display: none;
    }
}

.voice_title{
    background-image: url(../img/voice_img02_pc.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 200px;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.voice_title img{
    position: absolute;
    top: 15%;
    right: 0;
    left: 0;
    width: 350px;
    padding: 0 0 15px;
    margin: 0 auto 0;
}
@media screen and (max-width:640px) {
    .voice_title{
        display: none;
    }
}


/*===========スライダー============*/

.slider_inner {
    margin-bottom: 60px;
}
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:100%;
    margin:0 auto;
}

.slider img {
    width:39vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
    margin: 20px 0;
    box-sizing: border-box;
}

.slider .slick-slide {
    transform: scale(0.8);/*左右の画像のサイズを80%に*/
    transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
    transform: scale(1);/*中央の画像のサイズだけ等倍に*/
    opacity: 1;/*透過なし*/
}


/*矢印の設定*/
.slick-prev {/*戻る矢印の位置と形状*/
    left: 27.2%;
    z-index: 100;
}

.slick-next {/*次へ矢印の位置と形状*/
    right: 28.2%;
    z-index: 100;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
    margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
    margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}
.slick-next:before {
    content: '▶';
}
.slick-prev:before {
    content: '◀';
}
.slick-prev:before, .slick-next:before{
    color: #FF7707;
    font-size: 40px;
}
ul {
    padding-inline-start: 0px;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    width: 40px !important;
    height: 56px !important;
    transform: translateY(-50%);
    border: none;
    background: transparent no-repeat center / contain;
    z-index: 2;
    cursor: pointer;
}
.slick-arrow img{
    width: 30px !important;
    height: 30px !important;
}
.slick-arrow::before{
    display: none;
}
.slick-dots li button:before {
    font-size: 15px !important;
}
.slick-dots li.slick-active button:before {
    color: #fa3b12 !important;
}
.slick-next {
    right: 27%!important;
}
.slick-prev {
    left: 27%!important;
}


@media (max-width: 767px) { 
    .slider img {
        width: 90vw;
    }
    .slick-prev {
        left: 0% !important;
        z-index: 100;
    }
    .slick-next {
        right: 0% !important;
        z-index: 100;
    }
}
/*===========スライダー============*/

.reason{
    background-color: #fffdd9;
}
.reason_title{
    background-image: url(../img/voice_img02_pc.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 160px;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    margin-top: 8%;
}
.reason_title img{
    position: absolute;
    top: -15%;
    right: 0;
    left: 0;
    width: 350px;
    padding: 0 0 15px;
    margin: 0 auto 0;
}
.reason_img03_pc{
    max-width: 1000px;
    width: 90%;
    margin: auto;
    padding-bottom: 8%;
}
@media screen and (max-width:640px) {
    .reason_title{
        display: none;
    }
}

.flow{
    background-image: url(../img/flow_img02_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
}
.flow img{
    max-width: 1000px;
    width: 90%;
    margin: auto;
    padding: 6% 0 9%;
}

.area{
    background-image: url(../img/area_img02_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
}
.area img{
    max-width: 1000px;
    width: 90%;
    margin: auto;
    padding: 5% 0 8%;
}

/*QA*/
.qa_title{
    background-image: url(../img/qa_img01_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    margin-bottom: 60px;
}
.qa_title img{
    width: 400px;
    padding: 40px 0 40px;
    margin: auto;
}
@media screen and (max-width:640px) {
    .qa_title{
        display: none;
    }
}
.qa{
    max-width: 800px;
    width: 90%;
    margin: auto;
}
.accordion-menu dt {
    background: #413f99;
 padding: 0.8rem 2rem 0.8rem 2.8rem;
 color: #fff;
 border-radius: 15px;
 margin-top: 8px;
 margin-bottom: 5px;
 position: relative;
 text-indent: -28px;
 line-height: 1;
}
.accordion-menu dt::before{
 content: url("../img/q.png");
 margin-left: 22px;
 margin-right: 5px;
 vertical-align: middle;
 display: inline-block;
}

.accordion-menu dt:first-child {
 border-top: none;
}
.accordion-menu dd {
    display: none;
    padding: 1rem;
    border-radius: 15px;
    color: #222;
    margin-inline-start: 0px;
    margin-bottom: 20px;
    position: relative;
    background: #fffdd9
    
}
.qa-area dl{
 width: 800px;
 margin: 0 auto;
}
.faq-question .icon {
    flex-shrink: 0;
}
.icon {
    position: absolute;
    color: #fff;
    font-size: 25px;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767px) { 
    .qa{
        width: 95%;
        margin: 10px auto 50px;
    }
}

footer{
    background-color: #0000bb;
    margin: 0;
    padding: 20px 0;
}
@media (max-width: 767px) { 
    footer{
        background-color: #0000bb;
        margin: 0 0 80px;
        padding: 20px 0;
    }
}
footer p, footer a {
    text-align: center;
    color: #ffffff;
    font-size: 13px;
}
/*追従ボタン*/
body {
    position: relative;
}
#follow_cta{
    background-color: rgb(0 100 255);
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}
.follow_inner{
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: auto;
}
#follow_cta p{
        color: #ffffff;
    margin: 10px 20px 10px 0;
    width: 55%;
    font-size: 1.2rem;
    width: 90%;
    text-align: center;
}
.flash{
    animation: flash 1.5s linear infinite;
}
@keyframes flash {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
.follow_inner_icon {
    display: flex;
}
.follow_inner_icon img {
    margin: auto;
}
.tell_btn2 {
    display: block;
    position: relative;
    width: 95%;
    background-image: linear-gradient(#1be620, #00930a);
    color: #fbfbfb;
    margin: auto 1% auto 0;
    padding: 8px 25px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 4px 0 #005506;
    height: 55px;
}
a.tell_btn2 img {
    width: 82%;
    margin: auto;
    display: block;
}
.mail_btn2 {
  display: flex;
  position: relative;
  width: 95%;
  background-image: linear-gradient(#f28e26, #f75612);
  color: #fbfbfb;
  margin: auto 0 auto 1%;
    padding: 8px 25px;
    border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 0 #852800;
    height: 55px;
}
.otoiawase_title{
    margin: 7% 0 0;
    background-color: #ececec;
}
.otoiawase_title img{
    width: 350px;
    padding: 6% 0 40px;
    margin: auto;
}
@media screen and (max-width:640px) {
    .follow_inner {
    flex-wrap: wrap;
}
#follow_cta p {
    margin: 10px 0 5px 0;
    font-size: 0.9rem;
}
a.tell_btn2 img {
    width: 100%;
}
.follow_inner_icon {
    width: 95%;
    margin-bottom: 10px;
}
.tell_btn2 {
    padding: 8px 10px;
    flex-grow: 1;
}
.mail_btn2 {
    padding: 8px 10px;
    flex-grow: 1;
}
    .qa_title{
        display: none;
    }
}