@charset "UTF-8";
/*   
Theme Name: FUN-K
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap");
/* ************************************************ 
 *	base
 * ************************************************ */
html,
html *,
body,
header,
footer {
  margin: 0;
  padding: 0;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  position: relative;
  background: #fff;
  font-family: "Yu Gothic", YuGothic, "Helvetica Neue", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", Arial, Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
}
body.home main, body.home a {
  color: #fff;
}
body:not(.home) main {
  color: #677077;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

#content {
  padding: 30px 0 80px;
}
@media print, screen and (min-width: 768px) {
  #content {
    padding: 70px 0 120px;
  }
}

.content_block:not(:last-child) {
  padding-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  .content_block:not(:last-child) {
    padding-bottom: 70px;
  }
}

.content_block_inner {
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
}

a.anchor {
  padding-top: 56px;
  margin-top: -56px;
}
@media print, screen and (min-width: 1024px) {
  a.anchor {
    padding-top: 108px;
    margin-top: -108px;
  }
}

.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 1024px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

@media print, screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}

/*********************************************************************
* flexbox外枠
**********************************************************************/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 600px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

.link_yes a, a.link_yes {
  color: #0A0B0C !important;
  text-decoration: underline;
}

.link_yes_white a {
  color: #fff !important;
  text-decoration: underline;
}

/* ************************************************ 
 *	ヘッダー
 * ************************************************ */
/* 共通
----------------------------------------------*/
header {
  position: absolute;
  width: 100%;
  height: 56px;
  z-index: 1;
}
@media print, screen and (min-width: 1024px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    background: none;
    padding: 20px 15px;
  }
}
@media print, screen and (min-width: 1200px) {
  header {
    padding: 30px 15px;
  }
}
@media print, screen and (min-width: 1400px) {
  header {
    padding: 30px;
  }
}
header.is-show {
  position: fixed;
  animation: fadein 0.5s;
  background: rgba(0, 0, 0, 0.9);
  transition: opacity 1s;
  z-index: 100;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header img {
  display: block;
}

.sp_head_menu {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  z-index: 100;
}
@media print, screen and (min-width: 1024px) {
  .sp_head_menu {
    display: block;
    width: auto;
    height: auto;
  }
}

body:not(.home) header {
  background: url(images/gnav-bg.webp);
  background-position: top center;
  background-size: auto 150%;
}
body:not(.home) header.is-show {
  background: rgba(0, 0, 0, 0.9);
}

/* ロゴ
----------------------------------------------*/
h1.pc_logo {
  width: 110px;
  margin-top: 8px;
  margin-left: 10px;
}
@media print, screen and (min-width: 1024px) {
  h1.pc_logo {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  h1.pc_logo {
    width: 150px;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 1600px) {
  h1.pc_logo {
    width: 260px;
    margin-top: 0;
    margin-left: 0;
  }
}

header.is-show h1.pc_logo {
  width: 110px;
}
@media print, screen and (min-width: 1024px) {
  header.is-show h1.pc_logo {
    width: 150px;
  }
}

h1.sp_menu_logo {
  width: 150px;
  margin: 30px auto 20px;
}

/* グローバルナビ
----------------------------------------------*/
.header_nav {
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .header_nav {
    display: flex;
    align-items: center;
  }
}
.header_nav a {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@media print, screen and (min-width: 1024px) {
  .header_nav a {
    letter-spacing: 0;
    text-indent: 0;
  }
}
@media print, screen and (min-width: 1400px) {
  .header_nav a {
    font-size: 15px;
  }
}

@media print, screen and (min-width: 1024px) {
  ul.site_link {
    display: flex;
  }
}
ul.site_link li {
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  margin: 0 20px;
}
@media print, screen and (min-width: 1024px) {
  ul.site_link li {
    border-bottom: none;
    margin: 0 1em 0 0;
  }
}
@media print, screen and (min-width: 1400px) {
  ul.site_link li {
    margin: 0 2em 0 0;
  }
}
ul.site_link a {
  display: block;
  padding: 15px 0;
}
@media print, screen and (min-width: 1024px) {
  ul.site_link a {
    display: inline-block;
    padding: 0;
  }
}

ul.header_shop_link {
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  ul.header_shop_link {
    margin-top: 0;
    margin-right: 1em;
  }
}
@media print, screen and (min-width: 1200px) {
  ul.header_shop_link {
    display: flex;
    margin-right: 0.5em;
  }
}
ul.header_shop_link li {
  line-height: 1;
}
@media print, screen and (min-width: 1200px) {
  ul.header_shop_link li {
    margin-right: 1em;
    margin-bottom: 0;
  }
}
ul.header_shop_link li:first-child {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1024px) {
  ul.header_shop_link li:first-child {
    margin-bottom: 8px;
  }
}
@media print, screen and (min-width: 1200px) {
  ul.header_shop_link li:first-child {
    margin-bottom: 0;
  }
}
ul.header_shop_link a {
  display: inline-block;
  width: 230px;
  background-color: #677077;
  padding: 8px 0;
}
@media print, screen and (min-width: 1024px) {
  ul.header_shop_link a {
    width: auto;
    padding: 6px 1em 5px 1em;
  }
}

ul.sns_nav {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media print, screen and (min-width: 1024px) {
  ul.sns_nav {
    justify-content: space-between;
    margin-top: 0;
  }
}
ul.sns_nav li:not(:last-child) {
  margin-right: 2em;
}
@media print, screen and (min-width: 1024px) {
  ul.sns_nav li:not(:last-child) {
    margin-right: 1em;
  }
}

/* ************************************************ 
 *	main
 * ************************************************ */
main.page {
  padding-top: 56px;
}
@media print, screen and (min-width: 1024px) {
  main.page {
    padding-top: 102px;
  }
}
@media print, screen and (min-width: 1200px) {
  main.page {
    padding-top: 115px;
  }
}
@media print, screen and (min-width: 1600px) {
  main.page {
    padding-top: 155px;
  }
}

/* ************************************************ 
 *	ページヘッダー
 * ************************************************ */
.page_header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 28vw;
}
@media print, screen and (min-width: 1024px) {
  .page_header {
    height: 300px;
  }
}
.page_header.about {
  background: url(images/page-header-about.webp) no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
@media print, screen and (min-width: 1024px) {
  .page_header.about {
    background-size: unset;
  }
}
.page_header.brandlist {
  background: url(images/page-header-list.webp) no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
@media print, screen and (min-width: 1024px) {
  .page_header.brandlist {
    background-size: unset;
  }
}
.page_header.contact {
  background: url(images/page-header-contact.webp) no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
@media print, screen and (min-width: 1024px) {
  .page_header.contact {
    background-size: unset;
  }
}
.page_header.info {
  background: url(images/page-header-information.webp) no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
@media print, screen and (min-width: 1024px) {
  .page_header.info {
    background-size: unset;
  }
}
.page_header.policy {
  background: url(images/page-header-policy.webp) no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
@media print, screen and (min-width: 1024px) {
  .page_header.policy {
    background-size: unset;
  }
}
.page_header h2 {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page_header h2 {
    font-size: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .page_header h2 {
    font-size: 60px;
  }
}

/* ************************************************ 
 *	SP　ハンバーガーメニュー
 * ************************************************ */
/* オーバーレイ
----------------------------------------*/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 45px;
  height: 56px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  transform: translateX(0);
}
@media print, screen and (min-width: 1024px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.5s;
}

.menu-trigger span:nth-of-type(1) {
  top: 18px;
}

.menu-trigger span:nth-of-type(2) {
  top: 27px;
}

.menu-trigger span:nth-of-type(3) {
  top: 36px;
}

.menu-trigger.active {
  transform: translateX(0);
  position: fixed;
  width: 45px;
  height: 59px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/* メニュー枠
----------------------------------------*/
nav#sp_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/bg-denim.webp);
  background-position: top center;
  background-size: auto 100%;
  transform: translate(-100%);
  transition: all 0.7s;
  overflow: scroll;
  z-index: 12;
}
@media print, screen and (min-width: 1024px) {
  nav#sp_nav {
    position: unset;
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
  }
}

nav#sp_nav.open {
  transform: translateZ(0);
}

/* ************************************************ 
 *	404
 * ************************************************ */
.notfound_wrap {
  padding: 120px 0 90px;
}

h2.notfound {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  h2.notfound {
    font-size: 26px;
  }
}

.notfound_txt {
  text-align: center;
  padding: 30px 0 40px;
}

/* ************************************************ 
 *	LINEアイコン
 * ************************************************ */
ul.line_link {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 52px;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  ul.line_link {
    top: 100px;
    bottom: unset;
    width: 54px;
    height: auto;
  }
}
@media print, screen and (min-width: 1024px) {
  ul.line_link {
    top: 180px;
    width: 64px;
  }
}
ul.line_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
}
ul.line_link img {
  display: block;
}
@media print, screen and (min-width: 768px) {
  ul.line_link img {
    width: 100%;
    margin: 0;
  }
}

body.fixed ul.line_link {
  z-index: 0;
}

li.footer_fixed_tel {
  width: 40%;
  background-color: #1d2a2e;
}
@media print, screen and (min-width: 768px) {
  li.footer_fixed_tel {
    display: none;
  }
}
li.footer_fixed_tel span {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-left: 0.3em;
}

li.footer_fixed_line {
  width: 90%;
  background-color: #06c755;
}
@media print, screen and (min-width: 768px) {
  li.footer_fixed_line {
    width: 100%;
  }
}
li.footer_fixed_line img {
  margin: 0 auto;
}

/* ************************************************ 
 *	フッター
 * ************************************************ */
/* 共通
----------------------------------------*/
footer {
  background: url(images/bg-denim.webp);
  background-position: top center;
  background-size: auto 100%;
  color: #fff;
  text-align: center;
  padding: 40px 0 52px;
}
@media print, screen and (min-width: 768px) {
  footer {
    background-size: inherit;
    text-align: left;
    padding: 0;
  }
}

.footer_inner {
  max-width: 1540px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .footer_inner {
    padding: 0 20px;
  }
}

/* 店舗情報
----------------------------------------*/
.footer_info {
  padding: 0 20px 30px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .footer_info {
    width: 300px;
    padding: 100px 0 40px 70px;
    margin: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer_info {
    width: 450px;
    padding: 100px 0 40px 90px;
  }
}
@media print, screen and (min-width: 1500px) {
  .footer_info {
    padding: 100px 0 40px 100px;
  }
}
.footer_info p {
  font-size: 16px;
  line-height: 1.5;
}
@media print, screen and (min-width: 1024px) {
  .footer_info p {
    font-size: 18px;
  }
}

.footer_logo {
  width: 200px;
  display: block;
  margin: 0 auto 10px;
}
@media print, screen and (min-width: 1024px) {
  .footer_logo {
    width: 282px;
    margin: 0 0 30px;
  }
}

a.footer_tel {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 10px 0;
}
@media print, screen and (min-width: 768px) {
  a.footer_tel {
    font-size: 24px;
    letter-spacing: 0.05em;
    text-indent: 0;
    pointer-events: none;
  }
}
@media print, screen and (min-width: 1024px) {
  a.footer_tel {
    font-size: 34px;
  }
}

ul.footer_shop_link {
  font-size: 16px;
  margin-top: 25px;
}
@media print, screen and (min-width: 768px) {
  ul.footer_shop_link {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 1024px) {
  ul.footer_shop_link {
    display: flex;
    font-size: 16px;
    margin-top: 15px;
  }
}
ul.footer_shop_link li {
  line-height: 1;
}
ul.footer_shop_link li:not(:last-child) {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 1024px) {
  ul.footer_shop_link li:not(:last-child) {
    margin-right: 1em;
    margin-bottom: 0;
  }
}
ul.footer_shop_link a {
  display: block;
  background-color: #677077;
  color: #fff;
  padding: 12px 1.5em;
}
@media print, screen and (min-width: 768px) {
  ul.footer_shop_link a {
    display: inline-block;
    padding: 6px 1em 5px 1em;
  }
}

ul.footer_sns_nav {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media print, screen and (min-width: 768px) {
  ul.footer_sns_nav {
    justify-content: unset;
  }
}
ul.footer_sns_nav li:not(:last-child) {
  margin-right: 1.5em;
}
@media print, screen and (min-width: 1024px) {
  ul.footer_sns_nav li:not(:last-child) {
    margin-right: 1em;
  }
}
ul.footer_sns_nav img {
  width: 30px;
}
@media print, screen and (min-width: 1024px) {
  ul.footer_sns_nav img {
    width: 36px;
  }
}

/* 地図
----------------------------------------*/
.footer_map {
  width: 100%;
  background: url(images/title-access-horizontal.webp) no-repeat;
  background-size: auto 20px;
  padding: 40px 20px 0;
}
@media print, screen and (min-width: 768px) {
  .footer_map {
    width: calc(100% - 330px);
    background: url(images/title-access-vertical.webp) no-repeat;
    background-position: top right;
    background-size: 36px auto;
    padding: 100px 70px 40px 0;
    transform: none;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer_map {
    width: calc(100% - 450px);
    background-size: 46px auto;
    padding: 100px 90px 40px 0;
  }
}
@media print, screen and (min-width: 1500px) {
  .footer_map {
    width: 60%;
    background-size: 56px auto;
    padding: 100px 100px 40px 0;
  }
}

.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 1200px) {
  .gmap {
    padding-bottom: 60%;
  }
}
@media print, screen and (min-width: 1500px) {
  .gmap {
    padding-bottom: 55%;
  }
}

.gmap iframe, .gmap object, .gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ナビ
----------------------------------------*/
nav.footer_nav {
  display: none;
}
@media print, screen and (min-width: 768px) {
  nav.footer_nav {
    display: block;
    width: calc(100% - 140px);
    border-top: 3px solid #fff;
    padding-top: 30px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1024px) {
  nav.footer_nav {
    width: calc(100% - 180px);
  }
}
@media print, screen and (min-width: 1500px) {
  nav.footer_nav {
    width: calc(100% - 200px);
  }
}

nav.footer_nav ul {
  margin: 0 auto;
}

nav.footer_nav ul li:not(:last-child) {
  margin-right: 1.5em;
}
@media print, screen and (min-width: 1024px) {
  nav.footer_nav ul li:not(:last-child) {
    margin-right: 3em;
  }
}

nav.footer_nav ul li a {
  color: #fff;
  font-size: 16px;
}

/* コピーライト
----------------------------------------*/
.copyright {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 40px 0 30px;
}
@media print, screen and (min-width: 768px) {
  .copyright {
    padding: 50px 0;
  }
}

.breadcrumbs_wrapper {
  width: 100%;
  font-size: 8px;
  padding: 6px 2px 8px 2px;
  line-height: 1;
  text-align: left;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto 10px;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding: 15px 0 15px 0;
    font-size: 12px;
    margin-bottom: 0;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 10px;
  padding: 0 2px;
  font-weight: bold;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper span {
    padding: 0 0;
    font-size: 10px;
    font-weight: bold;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  padding-right: 2px;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper a {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */