@charset "utf-8";
/*
theme Name: 積丹町旅先納税サイトテーマ(2026)
Description: 積丹町旅先納税サイト
version： 1.0.0
*/

/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 102.4rem;
  --mainColor: #00a0fa;
  --subColor: #fff500;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333333;
  height: 100%;
  font-family: YakuHanRP, "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}


table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #333;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 5rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.large_container {
  max-width: calc(128rem + 5rem);
}

.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s ease-in-out;
  /* background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px); */
}
#header #h_logo,
#header #h_logo img {
  transition: all 0.5s ease-in-out;
}
#header.scroll {
  /* background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
}
.open #header {
  position: fixed;
}



@media only screen and ( max-width : 767px ) {
  #header {
    height: 10rem;
    align-items: flex-start;
    position: fixed;
  }

  .open #header {
    height: 100%;
  }
  .open #header #h_logo {
    position: relative;
    z-index: 102; 
  }
  #h_logo img {
    width: 10rem;
  }
  #menu_btn {
    transition: .3s;
    cursor: pointer;
    position: absolute !important;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    right: 2rem;
    top: 3.4rem;
    border-radius: 50%;
    background: #fff;
  }
  #menu_btn.active {
    background: #fff;
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100%;
    height: 100vh;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all .5s;
  }
  .menu-trigger {
    vertical-align: middle;
    text-align: center;
    position: relative;
    width: 2.2rem;
    height: 1.4rem;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem;
    background-color: var(--mainColor);
    transition: all .5s;
  }
  #header.scroll .menu-trigger span,
  #menu_btn.active .menu-trigger span {
    background: var(--mainColor);
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(3) {
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(.6rem) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: .6rem;
    left: auto;
    right: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-.6rem) rotate(45deg);
  }
  #gNav {
    height: 100%;
    overflow: auto;
    background-color: var(--mainColor);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 101;
    transition: all .2s;
    width: 100%;
    padding: 12rem 3rem 3rem;
    opacity: 0;
    visibility: hidden;
  }
  #gNav.open {
    /*transform: translateZ(0);*/
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #gNav .nav {
    margin-bottom: 2rem;
  }
  #gNav .nav li {
    margin-bottom: 1.5rem;
  }
  #gNav .nav li a {
    position: relative;
    padding: 1.2rem 0;
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
    font-weight: 700;
    display: block;
  }
  .h_cta_btn {
    font-size: 2.3rem;
    color: var(--mainColor);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .15em;
    font-weight: 700;
    background: #fff500;
    height: 6rem;
    border-radius: 5rem;
    border: .25rem solid #fff;
  }
  .h_cta_btn:after {
    content: "";
    width: 3.2rem;
    height: 3.2rem;
    background: url(img/arrow.svg) no-repeat center / 100%;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .h_cta_btn_sp {
    color: #fff;
    font-size: 1.5rem;
    border-radius: 5rem;
    letter-spacing: .1em;
    width: 16.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.2rem;
    position: absolute;
    right: 7rem;
    top: 3.5rem;
    border: .2rem solid #fff;
    font-weight: 700;
    background: url(img/ico-shop.svg) no-repeat 8% 50% / 2rem,url(img/arrow_white.svg) no-repeat 90% 50% / .6rem;
    backdrop-filter: blur(10px);
  }
  #header.scroll .h_cta_btn_sp {
    color: var(--mainColor);
    border-color: var(--mainColor);
    background: url(img/ico-shop-blue.svg) no-repeat 8% 50% / 2rem, url(img/arrow_blue.svg) no-repeat 90% 50% / .6rem;
  }
  #header.scroll #menu_btn {
    background: var(--mainColor);
  }
  #header.scroll #menu_btn .menu-trigger span {
    background: #fff;
  }
  #header.scroll #menu_btn.active {
    background: #fff;
  }
  #header.scroll #menu_btn.active .menu-trigger span {
    background: var(--mainColor);
  }
}
@media print, screen and ( min-width : 768px ) {
  #header {
    height: 11rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 1);
  }

  #h_logo {
    width: 18rem;
  }
  #menu_btn,.overlay,.h_cta_btn_sp {
    display: none;
  }
  #h_nav {
  }
  #gNav li {
    font-weight: 600;
    font-size: 1.4rem;
    position: relative;
    margin-right: 2rem;
  }
  #gNav li a {
    color: #222;
    letter-spacing: .15em;
    display: block;
  }
  /* #header.scroll #gNav li a {
    color: var(--mainColor);
  } */
  .h_cta {
    display: flex;
    align-items: center;
  }
  .h_cta .h_cta_btn {
    margin-right: .8rem;
    width: 17rem;
    display: flex;
    align-items: center;
    border: .2rem solid var(--mainColor);
    border-radius: 5rem;
    color: var(--mainColor);
    font-weight: 700;
    font-size: 1.6rem;
    height: 4.6rem;
    position: relative;
    padding: 0 1.5rem;
  }
  .h_cta .h_cta_btn01 {
    justify-content: center;
    width: 15rem;
  }
  .h_cta .h_cta_btn02:after {
    content: "";
    width: 2.2rem;
    height: 2.2rem;
    background: url(img/arrow.svg) no-repeat center / 100%;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .h_cta .h_cta_btn01 span {
    position: relative;
    padding-left: 3rem;
  }
  .h_cta .h_cta_btn02 {
    background: var(--subColor);
  }
  .h_cta .h_cta_btn01 span:before {
    content: "";
    width: 2.2rem;
    height: 2rem;
    background: url(img/ico-shop-blue.svg) no-repeat center / 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .h_cta .h_cta_btn:last-child {
    margin-right: 0;
  }
}
@media print, screen and ( min-width : 1400px ) {
  #header {
    padding: 0 3rem;
  }
  #h_logo {
    width: 20rem;
  }
  #gNav li {
    font-size: 1.4rem;
    margin-right: 3rem;
  }
  .h_cta .h_cta_btn {
    margin-right: 1.2rem;
    width: 19rem;
    justify-content: center;
  }
  .h_cta .h_cta_btn01 {
    width: 19rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
}
#footer #f_nav a {
  color: #222;
  font-weight: 500;
}
#footer .nav li:last-child {
  margin-bottom: 0;
}
.copyright {
  font-weight: 500;
}

@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 7rem 0 3rem;
  }
  #footer .container {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  #f_logo_sp {
    width: 14.2rem;
    margin: 5rem auto 4.5rem;
  }
  #f_contact {
    width: 23.5rem;
    margin: 0 auto;
  }
  #f_contact .btn {
    margin-bottom: 1.5rem;
  }
  #f_left {
    display: none;
  }
  #f_nav {
    margin-bottom: 5rem;
  }
  #f_nav li {
    width: 48%;
    margin-bottom: 2rem;
  }
  #f_nav li:last-child {
    width: 100%;
  }
  .copyright {
    text-align: center;
    font-size: 1rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 8rem 0;
  }
  #f_right #f_logo_sp {
    display: none;
  }
  #f_logo_pc {
    width: 26rem;
    margin-right: 9.4rem;
  }
  #f_right {
    width: calc(100% - 35.4rem);
  }
  #f_contact .btn {
    margin-bottom: 2rem;
  }
  .footer_inner {
    max-width: 80rem;
    margin: 0 auto;
  }
  #f_nav {
    margin-top: 4rem;
  }
  #f_nav li {
    width: 30%;
    margin-bottom: 3rem;
  }
  #f_nav li:last-child {
    width: 100%;
  }
  .copyright {
    font-size: 1.4rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}


.btn {
  max-width: 41rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: .4rem solid var(--mainColor);
  border-radius: 5rem;
  color: var(--mainColor);
  font-weight: 700;
  height: 6rem;
  position: relative;
  background: var(--subColor);
  letter-spacing: .1em;
}
.btn:after {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: url(img/arrow.svg) no-repeat center / 100%;
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn02 {
  background: #fff;
  color: var(--mainColor);
}
.btn03 {
  background: var(--mainColor);
  color: #fff;
}
.btn03:after,
.btn04:after {
  background: url(img/arrow_yellow.svg) no-repeat center / 100%;
}
.btn04 {
  background: #fff;
  color: var(--mainColor);
}

.btn_center {
  margin: 0 auto;
}
.btn_pr0 {
  padding-right: 0 !important;
}
@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 7rem 0;
  }
  .btn {
    margin: 0 auto;
    border: .2rem solid var(--mainColor);
    height: 4.5rem;
    font-size: 1.8rem;
    max-width: 24rem;
  }
  .btn03,
  .btn04 {
    height: 4rem;
    font-size: 1.5rem;
    max-width: 27rem;
    padding-right: 3rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 10rem 0;
  }
  .btn {
    font-size: 2.7rem;
    height: 8.4rem;
  }
  .btn:after {
    width: 4.8rem;
    height: 4.8rem;
    right: 1rem;
  }
  
  .btn03,
  .btn04 {
    font-size: 2.2rem;
    padding-right: 6rem;
    height: 6rem;
  }
  .btn03:after,
  .btn04:after {
    width: 4.2rem;
    height: 4.2rem;
    right: 1rem;
  }
  .btn_small {
      max-width: 19rem;
      font-size: 1.9rem;
      height: 4.8rem;
      border-width: .2rem;
  }
  .btn_small:after {
    width: 2.8rem;
    height: 2.8rem;
    right: 1rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   Contact

--------------------------------------------------------------------------------------------- */
#contact {
  border-top: 1px solid var(--mainColor);
}
#contact .gmap {
  position: relative;
  overflow: hidden;
}
#contact .gmap:before {
  content: "";
  width: 150%;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
#contact .gmap iframe {
  display: block;
  width: 100%;
}
.contact_lead_txt {
  text-align: center;
  line-height: 2;
}
@media only screen and ( max-width : 767px ) {
  .contact_inner {
    padding: 5rem 0;
  }
  .contact_lead_txt {
    font-size: 1.6rem;
    margin-bottom: 5rem;
  }
  #contact .gmap iframe {
    height: 20rem;
  }
  #contact .gmap:before {
    height: 20rem;
    top: -17rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .contact_inner {
    padding: 6vw 0;
  }
  #contact .gmap:before {
    height: 40vw;
    top: -34vw;
  }
  #contact .gmap iframe {
    height: 37.5vw;
  }
  .contact_lead_txt {
    font-size: 2.4rem;
    margin-bottom: 6rem;
  }
  .contact_inner .btn {
    margin-top: 6rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

