@charset "UTF-8";
/* ------------------------------------------
 Common
------------------------------------------ */
html,
body {
  width: 100%;
  height: 100%;
  background-color: #F7F7F7;
}

/* ------------------------------------------
 Module
------------------------------------------ */
.m_font_mincho {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

.m_font_bold {
  font-weight: bold;
}

.m_color_red {
  color: #c00;
}

.kanagawaku {
  background: #69b620 !important;
}

.tsurumiku {
  background: #f67465 !important;
}

/* ------------------------------------------
 layout
------------------------------------------ */
.l_ta_c {
  text-align: center;
}

.l_ta_r {
  text-align: right;
}

/* -------------------------------------
  page in animetion
------------------------------------- */
.fade_in_off {
  transition: 1s;
  opacity: 0;
}

.fade_in_on {
  opacity: 1 !important;
}

.under_fade_in_off {
  transition: .7s;
  opacity: 0;
  transform: translateY(30px);
}

.under_fade_in_on {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.left_fade_in_off {
  transition: .7s;
  opacity: 0;
  transform: translateX(-50px);
}

.left_fade_in_on {
  opacity: 1 !important;
  transform: translateX(0);
}

.right_fade_in_off {
  transition: .7s;
  opacity: 0;
  transform: translateX(50px);
}

.right_fade_in_on {
  opacity: 1 !important;
  transform: translateX(0);
}

/* ------------------------------------------
 SP
------------------------------------------ */
@media screen and (max-width: 750px) {
  /* common */
  h2 {
    margin: 0;
    padding: 30px;
    background-color: #2A9BEB;
    text-align: center;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 4px;
  }

  .br_pc {
    display: none;
  }

  .br_sp {
    display: inline;
  }

  .pc_inline {
    display: none;
  }

  /* header */
  header {
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-image: url("../img/header_bg.jpg");
    background-repeat: no-repeat;
    background-position: 30% center;
    background-size: cover;
    overflow: hidden;
    position: relative;
  }
  header > h1 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 80%;
    margin-left: -40%;
  }
  header > .logo {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 70%;
    margin-left: -35%;
    animation: ani_logo_in 1s ease 1;
  }
  @keyframes ani_logo_in {
    0% {
      transform: translateX(100vw);
    }
    80% {
      transform: translateX(-5px);
    }
    90% {
      transform: translateX(2px);
    }
    95% {
      transform: translateX(-1px);
    }
    100% {
      transform: translateX(0);
    }
  }
  header > nav {
    position: absolute;
    top: 52%;
    left: 50%;
    width: 60%;
    margin-left: -30%;
  }
  header > nav > ul {
    overflow: hidden;
  }
  header > nav > ul > li {
    float: left;
    width: 48%;
    box-sizing: border-box;
  }
  header > nav > ul > li:nth-child(1) {
    margin-bottom: 10px;
  }
  header > nav > ul > li:nth-child(2) {
    margin-bottom: 10px;
  }
  header > nav > ul > li:nth-child(odd) {
    clear: both;
    margin-right: 2%;
    text-align: right;
  }
  header > nav > ul > li:nth-child(even) {
    margin-left: 2%;
    text-align: left;
  }
  header > nav > ul > li:last-child {
    margin-right: 0;
  }
  header > nav > ul > li > a {
    display: inline-block;
  }

  /* NANAOクリーニング宅配サービスでお悩み解決！ */
  .box_kaiketsu > section {
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .box_kaiketsu > section.blue_back {
    background-color: #E9EEF1;
  }
  .box_kaiketsu > section > ul {
    overflow: visible;
  }
  .box_kaiketsu > section > ul > li h3 {
    width: 80%;
    margin: 0 auto;
  }
  .box_kaiketsu > section > ul > li h3 > img {
    max-width: 100%;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.text > h3 {
    margin-bottom: 20px;
    text-align: center;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.text > div {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.picture {
    text-align: center;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.picture > img {
    width: 60%;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.text {
    text-align: left;
    vertical-align: top;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.text > h3 {
    margin-bottom: 20px;
    text-align: center;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.text > div {
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.picture {
    text-align: center;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.picture > img {
    width: 60%;
  }

  /* ご利用方法 */
  .box_goriyo {
    background-color: #FCE446;
  }
  .box_goriyo > section {
    padding: 40px 20px 20px;
    box-sizing: border-box;
  }
  .box_goriyo > section > ul > li {
    position: relative;
    margin-top: -10px;
  }
  .box_goriyo > section > ul > li > .number {
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 900;
  }
  .box_goriyo > section > ul > li > .number > span {
    padding: 10px 20px;
    background-color: #2A9BEB;
    border-radius: 50%;
    border: 5px solid #fff;
    color: #fff;
    font-size: 30px;
    box-sizing: border-box;
  }
  .box_goriyo > section > ul > li > .white_box {
    margin: 20px 0 0 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
  }
  .box_goriyo > section > ul > li > .white_box > h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.6;
  }
  .box_goriyo > section > ul > li > .white_box > p {
    font-size: 14px;
  }
  .box_goriyo > section > ul > li > .white_box > div > img {
    max-width: 100%;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left {
    margin-bottom: 20px;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left > h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.6;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left > h3.h3_ex1 {
    font-size: 20px;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left > p {
    font-size: 14px;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_right {
    text-align: center;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_right > img {
    width: 60%;
  }
  .box_goriyo > section > ul > li > .white_box > p {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .box_goriyo > section > ul > li.arrow {
    text-align: center;
  }
  .box_goriyo > section > ul > li.arrow > i {
    font-size: 60px;
    line-height: 1;
    color: #299BEB;
  }

  /* 宅配パック */
  .box_takuhai {
    padding: 20px;
    box-sizing: border-box;
    background-color: #F6F3ED;
  }
  .box_takuhai > section {
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 3px 3px 3px 5px #eee;
    border-radius: 20px;
  }
  .box_takuhai > section:last-child {
    margin-bottom: 0;
  }
  .box_takuhai > section > h3 {
    padding: 20px 0;
    font-size: 22px;
    color: #299BEB;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1;
  }
  .box_takuhai > section > div {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 15px;
    border-radius: 0 0 20px 20px;
  }
  .box_takuhai > section > div > ul {
    list-style: none;
  }
  .box_takuhai > section > div > ul > li {
    font-size: 14px;
    background-color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 10px 15px;
    border-radius: 10px;
  }
  .box_takuhai > section > div > ul > li > div {
    text-align: center;
  }
  .box_takuhai > section > div > ul > li > div:last-child.tal {
    padding-top: 5px;
    text-align: left;
    line-height: 1.3;
  }
  .box_takuhai > section > div > ul > li > div > .info {
    font-size: 12px;
    text-align: left;
  }
  .box_takuhai > section > div > ul > li .large1 {
    color: #ED780D;
    font-size: 24px;
    font-weight: bold;
  }
  .box_takuhai > section > div > ul > li .large2 {
    color: #E93C3C;
    font-size: 24px;
    font-weight: bold;
  }
  .box_takuhai > section > div > ul > li .small1 {
    font-size: 12px;
  }
  .box_takuhai > section > div > ul > li .small2 {
    font-size: 14px;
  }
  .box_takuhai > section > div > .pat_b {
    margin-bottom: 20px;
  }
  .box_takuhai > section > div > .pat_b > li:last-child {
    margin-bottom: 0;
  }
  .box_takuhai > section > div > .count_info > h4 {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .box_takuhai > section > div > .count_info > .count_table {
    display: table;
    table-layout: fixed;
    margin: 0 auto;
  }
  .box_takuhai > section > div > .count_info > .count_table > div {
    display: table-row;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    padding: 0 0 10px;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div > ul {
    list-style: none;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div > ul > li {
    display: inline-block;
    width: 30px;
    margin-right: 3px;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div:nth-child(1) {
    width: 7em;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div:nth-child(2) {
    text-align: left;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div:nth-child(3) {
    width: 3em;
  }
  .box_takuhai > section > div > .count_info > .count_table > div:last-child > div {
    padding-bottom: 0;
  }
  .box_takuhai > section > div > .count_info > aside {
    display: block;
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
  }
  .box_takuhai > section > .takuhai_a {
    background-color: #89CCFB;
  }
  .box_takuhai > section > .takuhai_b {
    background-color: #89CCFB;
  }
  .box_takuhai > section > .map {
    margin: 0 auto;
    padding: 20px 20px;
  }
  .box_takuhai > section > .map > .image {
    margin-bottom: 20px;
  }
  .box_takuhai > section > .map > .image > img {
    max-width: 100%;
  }
  .box_takuhai > section > .map > h3 {
    padding: 10px 0 20px;
    font-size: 22px;
    color: #299BEB;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1;
  }
  .box_takuhai > section > .map > .area_text {
    margin: 0 auto;
    padding: 20px;
    border: 1px  #33AEFF solid;
    border-radius: 20px;
  }
  .box_takuhai > section > .map > .area_text > div:first-child {
    margin-bottom: 20px;
  }
  .box_takuhai > section > .map > .area_text > div > div {
    text-align: left;
    vertical-align: top;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 2;
    margin-bottom: 10px;
  }
  .box_takuhai > section > .map > .area_text > div > div:first-child > span {
    padding: 5px 7px;
    color: #fff;
    background-color: #299BEB;
  }

  /* お支払い方法 */
  .box_oshiharai > section {
    padding: 20px;
    background-color: #FFF;
  }
  .box_oshiharai > section > div {
    font-size: 14px;
    color: #523926;
  }
  .box_oshiharai > section > div > .box1 {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: bold;
  }
  .box_oshiharai > section > div > .box1 > span {
    font-size: 16px;
    font-weight: bold;
    color: #EC6D45;
  }
  .box_oshiharai > section > div > .box2 {
    font-size: 14px;
  }
  .box_oshiharai > section > div > .box2 > span {
    color: #EC6D45;
    font-weight: bold;
    line-height: 2.4;
  }
  .box_oshiharai > section > div > .box2 > .card {
    margin: 10px 0 30px;
  }
  .box_oshiharai > section > div > .box2 > .paypay {
    padding-top: 5px;
    max-width: 90px;
  }
  .box_oshiharai > section > div > aside > ul {
    list-style: none;
  }
  .box_oshiharai > section > div > aside > ul > li {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-bottom: 10px;
  }
  .box_oshiharai > section > div > aside > ul > li div {
    display: table-cell;
    text-align: left;
    vertical-align: top;
    font-size: 12px;
  }
  .box_oshiharai > section > div > aside > ul > li div:first-child {
    width: 1.5em;
  }

  /* Q&A */
  .box_qanda {
    padding: 20px 20px;
    box-sizing: border-box;
    background-color: #89CCFB;
  }
  .box_qanda > section {
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
  }
  .box_qanda > section > dl {
    border-bottom: 1px #D6D5D5 solid;
  }
  .box_qanda > section > dl.dl_top {
    border-top: 1px #D6D5D5 solid;
  }
  .box_qanda > section > dl > dt {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dt > div {
    display: table-cell;
    vertical-align: middle;
  }
  .box_qanda > section > dl > dt .question {
    width: 50px;
    text-align: center;
  }
  .box_qanda > section > dl > dt .question > span {
    padding: 5px 12px;
    border-radius: 50%;
    background-color: #299BEB;
    font-size: 24px;
    color: #fff;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dt .question_text {
    padding-left: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    vertical-align: middle;
  }
  .box_qanda > section > dl > dt .question_plus {
    width: 26px;
    text-align: right;
    vertical-align: middle;
  }
  .box_qanda > section > dl > dt .question_plus > span {
    font-size: 22px;
    color: #299BEB;
    text-decoration: none;
  }
  .box_qanda > section > dl > dt .question_plus > span:hover {
    opacity: 0.7;
  }
  .box_qanda > section > dl > dd {
    display: none;
    table-layout: fixed;
    width: 100%;
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dd > div {
    display: table-cell;
    vertical-align: middle;
  }
  .box_qanda > section > dl > dd > .answer {
    width: 50px;
    text-align: center;
  }
  .box_qanda > section > dl > dd > .answer > span {
    padding: 5px 12px;
    border-radius: 50%;
    background-color: #FCE446;
    font-size: 24px;
    color: #fff;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dd > .answer_text {
    padding-left: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    vertical-align: middle;
  }
  .box_qanda > section > dl > dd > .answer_text a {
    text-decoration: underline;
  }

  /* お申し込みはこちら */
  .box_entry {
    padding: 30px 20px;
    box-sizing: border-box;
    background-color: #fff;
    text-align: center;
  }
  .box_entry > section > a {
    display: inline-block;
  }
  .box_entry > section > a > img {
    width: 80%;
  }

  /* フッター */
  footer {
    background-color: #FEFAEC;
  }
  footer > section {
    padding: 30px 20px;
  }
  footer > section > nav {
    display: none;
    margin-bottom: 100px;
  }
  footer > section > nav > ul > li {
    float: left;
    width: 140px;
    display: inline-block;
    border-right: 1px #b4b4b4 solid;
  }
  footer > section > nav > ul > li:first-child {
    border-left: 1px #b4b4b4 solid;
  }
  footer > section > nav > ul > li > a {
    display: block;
    text-align: center;
  }
  footer > section > nav > ul > li > a > i {
    color: #ED772F;
  }
  footer > section > .shop_list {
    overflow: hidden;
  }
  footer > section > .shop_list > .footer_logo {
    text-align: center;
    margin-bottom: 30px;
  }
  footer > section > .shop_list > .footer_logo > a {
    display: block;
  }
  footer > section > .shop_list > .footer_logo > a > img {
    max-width: 100%;
  }
  footer > section > .shop_list > .store_name > dl {
    margin: 0 auto;
    font-size: 14px;
    overflow: hidden;
  }
  footer > section > .shop_list > .store_name > dl > dd {
    margin-bottom: 10px;
  }
  footer > small {
    display: block;
    padding: 20px 0;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #ED772F;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 10px;
    letter-spacing: 1px;
  }

  /* お申し込みはこちら ボタン */
  .entry {
    position: fixed;
    top: 70%;
    right: -140px;
    z-index: 900;
    transition: .5s;
  }
  .entry > a {
    display: table;
    table-layout: fixed;
    border-radius: 10px 0 0 10px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ec675a+0,f3b456+100 */
    background: #ec675a;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ec675a 0%, #f3b456 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #ec675a 0%, #f3b456 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #ec675a 0%, #f3b456 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec675a', endColorstr='#f3b456',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
  }
  .entry > a > div {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    line-height: 1.3;
    padding: 10px 15px;
    font-size: 14px;
  }
  .entry > a > div:first-child {
    width: 1em;
    text-align: center;
    padding-right: 10px;
    font-size: 16px;
  }
  .entry > a > div:last-child {
    padding-left: 0;
  }

  .entry_button_visible {
    right: 0 !important;
  }

  /* トップに戻る ボタン */
  #gotop {
    position: fixed;
    bottom: -70px;
    right: 15px;
    width: 50px;
    height: 50px;
    display: table;
    cursor: pointer;
    transition: .5s;
  }
  #gotop > div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background-color: #76b4f0;
    color: #fff;
    border-radius: 50px;
    line-height: 1.1;
    font-size: 12px;
  }
  #gotop > div > i {
    font-size: 16px;
  }

  .page_top_visible {
    bottom: 15px !important;
  }
}
/* ------------------------------------------
 PC
------------------------------------------ */
@media screen and (min-width: 751px) {
  /* common */
  h2 {
    margin: 0;
    padding: 45px 0;
    background-color: #2A9BEB;
    text-align: center;
    font-size: 50px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 14px;
  }

  .br_pc {
    display: inline;
  }

  .br_sp {
    display: none;
  }

  .pc_inline {
    display: inline;
  }

  /* header */
  header {
    position: relative;
    height: 997px;
    background-image: url("../img/header_bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
  }
  header > h1 {
    position: absolute;
    left: 50%;
    top: 12%;
    margin-left: -407px;
  }
  header > .logo {
    position: absolute;
    left: 50%;
    top: 34%;
    margin-left: -276px;
    animation: ani_logo_in 1.5s ease 1;
  }
  @keyframes ani_logo_in {
    0% {
      transform: translateX(100vw);
    }
    80% {
      transform: translateX(-5px);
    }
    90% {
      transform: translateX(2px);
    }
    95% {
      transform: translateX(-1px);
    }
    100% {
      transform: translateX(0);
    }
  }
  header > nav {
    width: 980px;
    min-width: 980px;
    margin: 0 auto;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 71%;
    margin-left: -490px;
  }
  header > nav > ul {
    overflow: visible;
  }
  header > nav > ul > li {
    float: left;
    margin-right: 20px;
  }
  header > nav > ul > li:last-child {
    margin-right: 0;
  }
  header > nav > ul > li > a {
    display: block;
  }
  header > nav > ul > li > a:hover {
    animation: ani_bound 1s ease 1;
  }

  @keyframes ani_bound {
    0% {
      transform: scale(1);
    }
    20% {
      transform: scale(1.1);
    }
    40% {
      transform: scale(1);
    }
    60% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  /* NANAOクリーニング宅配サービスでお悩み解決！ */
  .box_kaiketsu > section {
    padding: 70px 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .box_kaiketsu > section.blue_back {
    background-color: #E9EEF1;
  }
  .box_kaiketsu > section > ul {
    width: 980px;
    min-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    clear: both;
    overflow: visible;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.text {
    float: right;
    width: 470px;
    margin-top: -20px;
    padding-left: 60px;
    text-align: left;
    vertical-align: top;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.text > h3 {
    margin-bottom: 50px;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.text > div {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.8;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.text > div > span.under_line {
    background: linear-gradient(transparent 70%, #FFEC1C 70%);
  }
  .box_kaiketsu > section > ul > li.kaiketsu_right > div.picture {
    float: left;
    width: 510px;
    text-align: right;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.text {
    position: relative;
    float: left;
    width: 470px;
    margin-top: -20px;
    padding-right: 60px;
    text-align: left;
    vertical-align: top;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.text > h3 {
    margin-bottom: 50px;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.text > div {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.8;
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.text > div > span.under_line {
    background: linear-gradient(transparent 70%, #FFEC1C 70%);
  }
  .box_kaiketsu > section > ul > li.kaiketsu_left > div.picture {
    float: right;
    width: 510px;
    text-align: left;
  }

  /* ご利用方法 */
  .box_goriyo {
    background-color: #FCE446;
  }
  .box_goriyo > section {
    width: 980px;
    min-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    clear: both;
    padding: 60px 0 70px;
    box-sizing: border-box;
  }
  .box_goriyo > section > ul > li {
    position: relative;
  }
  .box_goriyo > section > ul > li > .number {
    display: inline-block;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 900;
  }
  .box_goriyo > section > ul > li > .number > span {
    padding: 10px 30px;
    background-color: #2A9BEB;
    border-radius: 50%;
    border: 10px solid #fff;
    color: #fff;
    font-size: 64px;
    box-sizing: border-box;
  }
  .box_goriyo > section > ul > li > .white_box {
    width: 930px;
    margin: 30px 0 0 45px;
    padding: 30px 60px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
  }
  .box_goriyo > section > ul > li > .white_box > h3 {
    margin-left: 50px;
    margin-bottom: 30px;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.6;
  }
  .box_goriyo > section > ul > li > .white_box > p {
    font-size: 18px;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > div {
    width: 50%;
    vertical-align: top;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left {
    float: left;
    text-align: left;
    vertical-align: top;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left > h3 {
    margin-left: 50px;
    margin-bottom: 40px;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.6;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left > h3.h3_ex1 {
    font-size: 36px;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_left > p {
    font-size: 18px;
  }
  .box_goriyo > section > ul > li > .white_box.wb_b > .white_box_right {
    float: right;
    text-align: right;
    vertical-align: top;
  }
  .box_goriyo > section > ul > li > .white_box > p {
    margin-bottom: 40px;
    font-size: 18px;
  }
  .box_goriyo > section > ul > li.arrow {
    text-align: center;
  }
  .box_goriyo > section > ul > li.arrow > i {
    font-size: 100px;
    color: #299BEB;
  }

  /* 宅配パック */
  .box_takuhai {
    padding: 70px 0;
    box-sizing: border-box;
    background-color: #F6F3ED;
  }
  .box_takuhai > section {
    width: 980px;
    min-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    clear: both;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 3px 3px 3px 5px #eee;
  }
  .box_takuhai > section:last-child {
    margin-bottom: 0;
  }
  .box_takuhai > section > h3 {
    font-size: 50px;
    color: #299BEB;
    font-weight: bold;
    letter-spacing: 6px;
    line-height: 140px;
    text-align: center;
  }
  .box_takuhai > section > div {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 40px;
  }
  .box_takuhai > section > div > ul {
    list-style: none;
    border-radius: 0 0 20px;
  }
  .box_takuhai > section > div > ul > li {
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 22px;
    background-color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 20px 40px;
    border-radius: 20PX;
  }
  .box_takuhai > section > div > ul > li > div {
    display: table-cell;
  }
  .box_takuhai > section > div > ul > li > div:last-child {
    text-align: right;
  }
  .box_takuhai > section > div > ul > li > div:last-child.tal {
    text-align: left;
  }
  .box_takuhai > section > div > ul > li > div > .info {
    font-size: 16px;
  }
  .box_takuhai > section > div > ul > li .large1 {
    color: #ED780D;
    font-size: 38px;
    font-weight: bold;
  }
  .box_takuhai > section > div > ul > li .large2 {
    color: #E93C3C;
    font-size: 38px;
    font-weight: bold;
  }
  .box_takuhai > section > div > ul > li .small1 {
    font-size: 16px;
  }
  .box_takuhai > section > div > ul > li .small2 {
    font-size: 22px;
  }
  .box_takuhai > section > div > .pat_a > li > div:first-child {
    width: 75%;
  }
  .box_takuhai > section > div > .pat_b {
    margin-bottom: 40px;
  }
  .box_takuhai > section > div > .pat_b > li:last-child {
    margin-bottom: 0;
  }
  .box_takuhai > section > div > .pat_b > li > div:first-child {
    width: 45%;
  }
  .box_takuhai > section > div > .count_info > h4 {
    text-align: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
  }
  .box_takuhai > section > div > .count_info > .count_table {
    display: table;
    table-layout: fixed;
    margin: 0 auto;
  }
  .box_takuhai > section > div > .count_info > .count_table > div {
    display: table-row;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div {
    display: table-cell;
    vertical-align: middle;
    font-size: 20px;
    padding: 0 0 20px;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div > ul {
    list-style: none;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div > ul > li {
    display: inline-block;
    width: 50px;
    margin-right: 10px;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div:nth-child(1) {
    width: 8em;
  }
  .box_takuhai > section > div > .count_info > .count_table > div > div:nth-child(2) {
    width: 340px;
  }
  .box_takuhai > section > div > .count_info > .count_table > div:last-child > div {
    padding-bottom: 0;
  }
  .box_takuhai > section > div > .count_info > aside {
    display: block;
    text-align: center;
    padding-top: 20px;
    font-size: 18px;
  }
  .box_takuhai > section > .takuhai_a {
    background-color: #89CCFB;
  }
  .box_takuhai > section > .takuhai_b {
    background-color: #89CCFB;
  }
  .box_takuhai > section > .map {
    margin: 0 auto;
    padding: 60px	0;
    width: 855px;
  }
  .box_takuhai > section > .map > .image {
    margin-bottom: 20px;
  }
  .box_takuhai > section > .map > h3 {
    font-size: 50px;
    color: #299BEB;
    font-weight: bold;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 10px;
  }
  .box_takuhai > section > .map > .area_text {
    margin: 0 auto;
    padding: 40px 45px;
    border: 2px  #33AEFF solid;
    border-radius: 20px;
  }
  .box_takuhai > section > .map > .area_text > div {
    display: table;
  }
  .box_takuhai > section > .map > .area_text > div:first-child {
    margin-bottom: 20px;
  }
  .box_takuhai > section > .map > .area_text > div > div {
    display: table-cell;
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 2.4;
  }
  .box_takuhai > section > .map > .area_text > div > div:first-child {
    width: 8em;
  }
  .box_takuhai > section > .map > .area_text > div > div:first-child > span {
    padding: 5px 7px;
    color: #fff;
    background-color: #299BEB;
  }

  /* お支払い方法 */
  .box_oshiharai > section {
    width: 980px;
    min-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    clear: both;
    padding: 70px 100px;
    background-color: #FFF;
  }
  .box_oshiharai > section > div {
    font-size: 18px;
    color: #523926;
  }
  .box_oshiharai > section > div > .box1 {
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: bold;
  }
  .box_oshiharai > section > div > .box1 > span {
    font-size: 30px;
    font-weight: bold;
    color: #EC6D45;
  }
  .box_oshiharai > section > div > .box2 {
    font-size: 16px;
  }
  .box_oshiharai > section > div > .box2 > span {
    color: #EC6D45;
    font-weight: bold;
    line-height: 2.4;
  }
  .box_oshiharai > section > div > .box2 > .card {
    margin: 10px 0 30px;
  }
  .box_oshiharai > section > div > .box2 > .paypay {
    padding-top: 5px;
  }
  .box_oshiharai > section > div > aside > ul {
    list-style: none;
  }
  .box_oshiharai > section > div > aside > ul > li {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-bottom: 10px;
  }
  .box_oshiharai > section > div > aside > ul > li div {
    display: table-cell;
    text-align: left;
    vertical-align: top;
    font-size: 16px;
  }
  .box_oshiharai > section > div > aside > ul > li div:first-child {
    width: 2em;
  }

  /* Q&A */
  .box_qanda {
    padding: 70px 0;
    box-sizing: border-box;
    background-color: #89CCFB;
  }
  .box_qanda > section {
    width: 980px;
    min-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    clear: both;
    padding: 70px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
  }
  .box_qanda > section > dl {
    border-bottom: 1px #D6D5D5 solid;
  }
  .box_qanda > section > dl.dl_top {
    border-top: 1px #D6D5D5 solid;
  }
  .box_qanda > section > dl > dt {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dt > div {
    display: table-cell;
    vertical-align: middle;
  }
  .box_qanda > section > dl > dt .question {
    width: 85px;
    text-align: center;
  }
  .box_qanda > section > dl > dt .question > span {
    padding: 5px 14px;
    border-radius: 50%;
    background-color: #299BEB;
    font-size: 30px;
    color: #fff;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dt .question_text {
    padding-left: 10px;
    font-size: 18px;
    letter-spacing: 1px;
  }
  .box_qanda > section > dl > dt .question_plus {
    width: 60px;
    text-align: center;
    cursor: pointer;
  }
  .box_qanda > section > dl > dt .question_plus > span {
    font-size: 22px;
    color: #299BEB;
    text-decoration: none;
  }
  .box_qanda > section > dl > dt .question_plus > span:hover {
    opacity: 0.7;
  }
  .box_qanda > section > dl > dd {
    display: none;
    table-layout: fixed;
    width: 100%;
    padding-bottom: 20px;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dd > div {
    display: table-cell;
  }
  .box_qanda > section > dl > dd > .answer {
    width: 85px;
    text-align: center;
  }
  .box_qanda > section > dl > dd > .answer > span {
    padding: 5px 14px;
    border-radius: 50%;
    background-color: #FCE446;
    font-size: 30px;
    color: #fff;
    box-sizing: border-box;
  }
  .box_qanda > section > dl > dd > .answer_text {
    padding-left: 10px;
    font-size: 18px;
  }

  /* お申し込みはこちら */
  .box_entry {
    padding: 100px 0;
    box-sizing: border-box;
    background-color: #fff;
    text-align: center;
  }
  .box_entry > section > a {
    display: inline-block;
  }

  /* フッター */
  footer {
    background-color: #FEFAEC;
  }
  footer > section {
    width: 980px;
    min-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    clear: both;
    padding: 50px 0;
  }
  footer > section > nav {
    margin-bottom: 100px;
  }
  footer > section > nav > ul > li {
    float: left;
    width: 140px;
    display: inline-block;
    border-right: 1px #b4b4b4 solid;
  }
  footer > section > nav > ul > li:first-child {
    border-left: 1px #b4b4b4 solid;
  }
  footer > section > nav > ul > li > a {
    display: block;
    text-align: center;
  }
  footer > section > nav > ul > li > a > i {
    color: #ED772F;
  }
  footer > section > .shop_list {
    overflow: hidden;
  }
  footer > section > .shop_list > div {
    text-align: left;
    vertical-align: top;
  }
  footer > section > .shop_list > .footer_logo {
    float: left;
    width: 340px;
  }
  footer > section > .shop_list > .store_name {
    float: right;
    width: 640px;
  }
  footer > section > .shop_list > .store_name > dl {
    font-size: 14px;
    overflow: hidden;
  }
  footer > section > .shop_list > .store_name > dl > dt {
    float: left;
    clear: both;
    width: 10em;
  }
  footer > section > .shop_list > .store_name > dl > dd {
    float: left;
  }
  footer > small {
    display: block;
    padding: 20px 0;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #ED772F;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* お申し込みはこちら ボタン */
  .entry {
    position: fixed;
    top: 50%;
    right: -230px;
    z-index: 900;
    transition: .5s;
  }
  .entry > a {
    display: table;
    table-layout: fixed;
    border-radius: 10px 0 0 10px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ec675a+0,f3b456+100 */
    background: #ec675a;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ec675a 0%, #f3b456 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #ec675a 0%, #f3b456 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #ec675a 0%, #f3b456 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec675a', endColorstr='#f3b456',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
  }
  .entry > a > div {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    line-height: 1.3;
    padding: 30px 20px;
    font-size: 1.1em;
  }
  .entry > a > div:first-child {
    width: 1em;
    text-align: center;
    padding-right: 10px;
    font-size: 1.2em;
  }
  .entry > a > div:last-child {
    padding-left: 0;
  }

  .entry_button_visible {
    right: 0 !important;
  }

  /* トップに戻る ボタン */
  #gotop {
    position: fixed;
    bottom: -100px;
    right: 30px;
    width: 70px;
    height: 70px;
    display: table;
    cursor: pointer;
    transition: .5s;
  }
  #gotop > div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background-color: #76b4f0;
    color: #fff;
    border-radius: 50px;
    line-height: 1.3;
  }
  #gotop > div > i {
    font-size: 1.5em;
  }

  .page_top_visible {
    bottom: 30px !important;
  }
}
