@charset "UTF-8";
/* CSS Document */
/* 基本設定-------------------------------------------*/
a {
  text-decoration: none;
  transition: all  0.3s;
  color: #453932;
  outline: none;
  position: relative;
  display: inline-block;
}

a:hover {
  opacity: 0.6;
}

a img,
a svg {
  text-decoration: none;
  transition: all  0.3s;
  color: #453932;
  outline: none;
}

div {
  outline: none;
  word-break: break-word;
}

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

svg {
  backface-visibility: hidden;
  transform: translateZ(0);
}

div, li, header, footer, dt, dd, section {
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.pc-view {
  display: none !important;
}

.sp-view {
  display: block !important;
}

@media screen and (min-width: 769px) {
  .pc-view {
    display: block !important;
  }
  .sp-view {
    display: none !important;
  }
}

/*-- Base --*/
html {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  color: #453932;
  background: #FFF;
  line-height: 1.8;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic", "游ゴシック", YuGothic, "メイリオ", Meiryo,sans-serif;
  font-size: 14px;
  width: 100%;
  word-wrap: break-word;
  letter-spacing: 0.02em;
  padding-top: 54px;
}

@media screen and (min-width: 769px) {
  body {
    padding-top: 111px;
  }
  a[href*="tel:"] {
    text-decoration: none;
  }
}

/*-- HTML5 elements --*/
article, aside, details, figcaption, figure, footer, header, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

strong {
  font-weight: bold;
}

section, article {
  position: relative;
}

::selection {
  background: #9c9c9c;
  color: #fff;
}

::-moz-selection {
  background: #9c9c9c;
  color: #fff;
}

/* 細かいパーツ-------------------------------------------*/
#page {
  position: relative;
  padding-top: 61px;
}

@media screen and (min-width: 769px) {
  #page {
    padding-top: 102px;
  }
}

.flex-wrapper {
  display: flex;
}

.box-inner {
  margin: 0 12px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .box-inner {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1140px;
  }
  .pc-flex {
    display: flex;
  }
}

.font-en {
  font-family: 'Montserrat', sans-serif;
}

.icon-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: 60%;
}

.btn a {
  color: #FE6D0D;
  display: block;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #FE6D0D;
  position: relative;
}

.btn .icon-arrow02 {
  position: absolute;
  right: 14%;
  bottom: 37%;
}

.btn .icon-arrow02::before {
  width: 26px;
}

.btn .icon-arrow02::after {
  bottom: 7px;
  right: -32px;
  width: 7px;
}

@media screen and (min-width: 769px) {
  .btn {
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
    font-size: 20px;
  }
  .btn a {
    padding: 12px 10px;
  }
  .btn a:hover {
    opacity: 1;
    letter-spacing: 0.2em;
  }
}

.btn-more {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.btn-more .icon-arrow02 {
  right: 33px;
  bottom: 54%;
}

@media screen and (min-width: 769px) {
  .btn-more {
    width: 310px;
    margin: 0 auto;
  }
  .btn-more .icon-arrow02 {
    bottom: 40%;
  }
}

.btn-back {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  width: 60%;
}

.btn-back .icon-arrow02 {
  right: auto;
  left: 19%;
  transform: scale(-1, 1);
}

@media screen and (min-width: 769px) {
  .btn-back {
    width: 310px;
    margin: 0 auto;
  }
  .btn-back .icon-arrow02 {
    bottom: 40%;
  }
}

.btn-top {
  width: 100%;
  padding: 0 18px;
}

.icon-arrow01 {
  position: relative;
  width: 12px;
  height: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}

.icon-arrow01:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.icon-arrow02 {
  position: relative;
}

.icon-arrow02::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 21px;
  height: 1px;
  background: #FE6D0D;
  transition: all .3s;
}

.icon-arrow02::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: -24px;
  width: 9px;
  height: 1px;
  background: #FE6D0D;
  transform: rotate(35deg);
  transition: all .3s;
}

.icon-nw {
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
}

.icon-nw:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  background: url(/assets/common/images/common/icon-nw.svg) no-repeat;
  background-size: contain;
}

.font-s {
  font-size: 10px;
}

@media screen and (min-width: 769px) {
  .font-s {
    font-size: 12px;
  }
}

.col {
  color: #FE6D0D;
}

.page-bd {
  padding-bottom: 60px;
  background: #f8f8f8;
}

@media screen and (min-width: 769px) {
  .page-bd {
    padding-bottom: 95px;
  }
}

.bgW {
  background: #fff !important;
}

.mds-ttl {
  position: relative;
  font-size: 22px;
  padding-left: 15px;
  letter-spacing: 0.1em;
  margin: 0 8vw 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.mds-ttl::before {
  content: "";
  width: 8vw;
  height: 1px;
  background: #FE6D0D;
  position: absolute;
  top: 20px;
  left: -8vw;
}

.mds-ttl .mds-en {
  font-family: 'Montserrat', sans-serif;
  color: #453932;
  font-size: 18px;
  margin-left: 15px;
  vertical-align: middle;
}

.mds-ttl .txt-jp {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #9b9b9b;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic", "游ゴシック", YuGothic, "メイリオ", Meiryo,sans-serif;
}

@media screen and (min-width: 769px) {
  .mds-ttl {
    padding-left: 65px;
    font-size: 26px;
    margin: 0;
    margin-bottom: 65px;
  }
  .mds-ttl::before {
    width: 50px;
    left: 0;
  }
  .mds-ttl .txt-jp {
    font-weight: bold;
    display: inline-block;
    margin-left: 15px;
  }
}

.noinfo {
  padding: 0 0 20px 30px;
  color: #888;
  font-size: 16px;
}

@media screen and (min-width: 769px) {
  .noinfo {
    font-size: 20px;
    padding-left: 60px;
  }
}

.tel-pcolor a {
  color: #017A8A;
}

.contents-tbl .tel a {
  color: #333;
}

/* テロップ-------------------------------------------*/
.telop {
  background: #F8F8F8;
  padding: 12px;
}

.telop .telop-inner {
  background: #fff;
  border: 2px solid #D94444;
  text-align: center;
  color: #453932;
  padding: 15px;
  font-size: 11px;
}

.telop .telop-inner .mds {
  font-size: 14px;
}

.telop .telop-inner a {
  color: #453932;
  text-decoration: underline;
}

.telop .telop-inner strong, .telop .telop-inner b {
  font-weight: bold;
}

.telop .telop-inner em {
  font-style: italic;
}

.telop .telop-inner img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  max-height: 600px;
  width: auto;
  height: auto;
  padding: 10px 0;
}

.telop .telop-inner ul {
  list-style-type: disc;
}

.telop .telop-inner ol {
  list-style-type: decimal;
}

.telop .telop-inner table th {
  text-align: center;
  vertical-align: inherit;
  font-weight: bold;
}

.telop .telop-inner .fwN, .telop .telop-inner caption, .telop .telop-inner h1, .telop .telop-inner h2, .telop .telop-inner h3, .telop .telop-inner h4, .telop .telop-inner h5, .telop .telop-inner h6, .telop .telop-inner td, .telop .telop-inner th {
  margin: 0;
}

.telop .telop-inner h1 {
  font-size: 2em;
}

.telop .telop-inner h2 {
  font-size: 1.5em;
}

.telop .telop-inner h3 {
  font-size: 1.17em;
}

.telop .telop-inner h4 {
  font-size: 1em;
}

.telop .telop-inner h5 {
  font-size: 0.83em;
}

.telop .telop-inner h6 {
  font-size: 0.67em;
}

.telop .telop-inner hr {
  display: block;
}

.telop.blk .telop-inner {
  border-color: #453932;
}

@media screen and (min-width: 769px) {
  .telop {
    padding: 15px 5px;
  }
  .telop .telop-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    font-size: 14px;
  }
}

/* 共通ヘッダー-------------------------------------------*/
.cmn-hd {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 98;
}

.cmn-hd .hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  background: #fff;
}

.cmn-hd .ttl {
  padding: 15px 0 15px 12px;
}

.cmn-hd .ttl img {
  vertical-align: initial;
}

.cmn-hd .ttl a {
  display: flex;
  flex-wrap: wrap;
}

.cmn-hd .ttl .img01 {
  width: 81px;
  margin-right: 5px;
}

.cmn-hd .ttl .img02 {
  width: 65px;
}

.cmn-hd .search-box {
  position: relative;
}

.cmn-hd .search-box .svg-img {
  stroke: #FE6D0D;
  fill: none;
  width: 23px;
  height: 23px;
  margin-top: 8px;
}

.cmn-hd .keyword-wrapper {
  display: none;
  opacity: 0;
  width: 100%;
  z-index: 2;
  position: absolute;
  left: 10px;
  background: #fff;
  height: 100%;
  padding-top: 9px;
}

.cmn-hd .keyword-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cmn-hd .keyword-box form {
  width: 80%;
}

.cmn-hd .keyword-box input[type="text"] {
  background: #f2f2f2;
  border: none;
}

.cmn-hd .keyword-box .btn-close {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  position: relative;
  border: 1px solid #FE6D0D;
  margin-left: 10px;
  background: #fff;
}

.cmn-hd .keyword-box .btn-close::before, .cmn-hd .keyword-box .btn-close::after {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  height: 1px;
  background: #FE6D0D;
}

.cmn-hd .keyword-box .btn-close::before {
  transform: rotate(-45deg);
}

.cmn-hd .keyword-box .btn-close::after {
  transform: rotate(45deg);
}

.cmn-hd .flex-wrapper {
  align-items: center;
  margin-right: 80px;
}

.navbtn {
  background: #FE6D0D;
  width: 55px;
  height: 55px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  top: 0;
}

.navbtn p {
  z-index: 1;
  position: relative;
}

.navbtn span {
  position: absolute;
  right: 18px;
  margin: 0 auto;
  height: 2px;
  width: 20px;
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.3s ease;
  z-index: 1;
}

.navbtn span:nth-of-type(1) {
  top: 20px;
}

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

.navbtn span:nth-of-type(3) {
  top: 35px;
}

.navbtn .txt-menu {
  display: none;
}

.navbtn.show span {
  opacity: 1;
  background-color: #fff;
  width: 28px;
  right: 13px;
}

.navbtn.show span:nth-child(1) {
  transform: translateY(5px) rotate(-45deg);
}

.navbtn.show span:nth-child(2) {
  opacity: 0;
}

.navbtn.show span:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
}

.navbtn .keyword-box {
  display: none;
}

.btn-lang {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: #FE6D0D;
  letter-spacing: 0.1em;
  margin-left: 15px;
  cursor: pointer;
}

.btn-lang .icon-arrow01 {
  top: -3px;
  left: 5px;
}

.btn-lang .icon-arrow01::before {
  width: 7px;
  height: 7px;
  border-color: #FE6D0D;
  border-width: 1px;
  transform: rotate(135deg);
}

.btn-gnav p {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
}

@media screen and (min-width: 769px) {
  .cmn-hd .hd-inner {
    align-items: center;
    height: 64px;
  }
  .cmn-hd .flex-wrapper {
    margin-right: 145px;
  }
  .cmn-hd .ttl {
    padding: 12px 0 12px 20px;
  }
  .cmn-hd .ttl .img01 {
    width: 135px;
  }
  .cmn-hd .ttl .img02 {
    width: 118px;
  }
  .cmn-hd .keyword-wrapper {
    display: block !important;
    opacity: 1 !important;
    width: auto;
    position: relative;
    left: 0;
    background: transparent;
    height: auto;
    padding-top: 0;
  }
  .cmn-hd .keyword-wrapper .btn-close {
    display: none;
  }
  .cmn-hd .keyword-wrapper .keyword-box {
    display: flex;
    width: 263px;
  }
  .cmn-hd .keyword-wrapper .keyword-box form {
    width: 100%;
  }
  .cmn-hd .keyword-wrapper .keyword-box input[type="text"] {
    height: 35px;
    font-size: 12px;
    padding: 0 10px 0 20px;
  }
  .cmn-hd .keyword-wrapper .keyword-box .search-submit {
    width: 25px;
    height: 25px;
    background-size: 15px 15px;
  }
  .navbtn {
    width: 111px;
    height: 64px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: 36px;
  }
  .navbtn:hover {
    opacity: 0.7;
  }
  .navbtn .hbg-wrapper {
    width: 20px;
    height: 18px;
    position: relative;
  }
  .navbtn span {
    width: 25px;
    right: 0;
    left: 0;
  }
  .navbtn span:nth-of-type(1) {
    top: 0;
  }
  .navbtn span:nth-of-type(2) {
    top: 8px;
  }
  .navbtn span:nth-of-type(3) {
    bottom: 0;
    top: auto;
  }
  .navbtn .txt-menu {
    display: block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin-left: 10px;
  }
  .navbtn.show span {
    width: 23px;
  }
  .navbtn.show span:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .navbtn.show span:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  .btn-gnav p {
    font-size: 14px;
    bottom: 16px;
  }
}

/* グローバルナビ-------------------------------------------*/
body.fixed, html.fixed {
  overflow: hidden;
}

.nav-contents {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #fff;
  height: 100vh;
  z-index: 100;
  font-size: 12px;
  font-weight: 700;
}

.nav-contents .box-inner {
  margin: 0 30px;
}

.nav-contents .icon-arrow01 {
  margin-left: 5px;
}

.nav-contents .icon-arrow01::before {
  border-color: #FE6D0D;
}

.nav-contents .inner {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding: 60px 0 120px;
  position: relative;
}

.nav-contents .navbtn {
  position: absolute;
  top: 0;
  right: 0;
}

.nav-contents .top-nav.sp {
  display: block;
}

.nav-contents .top-nav.sp ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}

.nav-contents .top-nav.sp ul li {
  width: calc(100% / 2);
  margin-bottom: 16px;
  line-height: 1.5;
}

.nav-contents .top-nav.sp ul li a {
  display: flex;
  align-items: center;
}

.nav-contents .top-nav.sp ul li a:hover {
  color: #FE6D0D;
}

.nav-contents .top-nav.sp ul li a:hover img {
  opacity: 1;
}

.nav-contents .top-nav.sp ul li a .logo {
  margin-right: 8px;
}

.nav-contents .link-nav {
  margin-bottom: 30px;
}

.nav-contents .link-nav ul {
  display: flex;
}

.nav-contents .link-nav ul li {
  width: calc(100% / 2);
}

.nav-contents .category-nav {
  background: #fdf7f2;
  padding: 32px 0 15px;
  text-align: center;
  margin-bottom: 30px;
}

.nav-contents .category-nav .category-mds.mds01 {
  background: #fee4ce;
  padding: 15px;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-contents .category-nav .category-mds.mds01 .icon-arrow01 {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
}

.nav-contents .category-nav .category-mds.mds01 .icon-arrow01::before {
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
}

.nav-contents .category-nav .category-mds.mds01.show {
  color: #fff;
  background: #FE6D0D;
}

.nav-contents .category-nav .category-mds.mds01.show .icon-arrow01 {
  transform: rotate(180deg);
}

.nav-contents .category-nav .category-mds.mds01.show .icon-arrow01::before {
  border-color: #fff;
}

.nav-contents .category-nav .category-wrapper {
  margin-bottom: 10px;
}

.nav-contents .category-nav ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px;
}

.nav-contents .category-nav ul li {
  background: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc(100% / 2 - 5px);
  height: 6.5vh;
  line-height: 1.6;
}

.nav-contents .category-nav ul li:nth-child(2n) {
  margin-right: 0;
}

.nav-contents .category-nav ul li a {
  display: flex;
  padding: 6px;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.nav-contents .area-nav {
  margin-bottom: 30px;
}

.nav-contents .area-nav .btn-map {
  margin-bottom: 35px;
}

.nav-contents .area-nav .area {
  display: flex;
  flex-wrap: wrap;
}

.nav-contents .area-nav .area li {
  background: #FEE4CE;
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc(100% / 2 - 5px);
  text-align: center;
  height: 8.1vh;
}

.nav-contents .area-nav .area li:nth-child(2n) {
  margin-right: 0;
}

.nav-contents .area-nav .area li a {
  display: flex;
  padding: 6px;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.nav-contents .shop-nav dl dt {
  margin-bottom: 5px;
}

.nav-contents .shop-nav dl dd {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  margin-left: 20px;
}

.nav-contents .shop-nav dl dd a {
  display: block;
  text-decoration: underline;
}

.nav-contents .shop-nav a {
  color: #FE6D0D;
}

.nav-contents .shop-nav .link-mds {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  padding-left: 20px;
  margin-right: 20px;
  border-left: 1px solid #fff;
  border-color: #FE6D0D;
  margin-bottom: 10px;
}

.nav-contents .shop-nav dl dd {
  margin-left: 0;
}

.nav-contents .shop-nav dl dd a {
  display: block;
  width: calc(100% / 3);
  padding-right: 10px;
  padding-bottom: 13px;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .nav-contents {
    top: 0;
  }
  .nav-contents .box-inner {
    margin: 0 auto;
  }
  .nav-contents .inner {
    padding-top: 0;
  }
  .nav-contents .top-nav.sp {
    display: none;
  }
  .nav-contents .category-nav {
    padding: 40px 0 10px;
    margin-bottom: 38px;
  }
  .nav-contents .category-nav .category-mds.pc-view {
    position: relative;
    font-size: 22px;
    padding-left: 15px;
    letter-spacing: 0.1em;
    margin: 0 8vw 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding-left: 65px;
    font-size: 26px;
    margin: 0;
    margin-bottom: 65px;
    text-align: left;
    font-size: 20px;
    margin-bottom: 13px;
  }
  .nav-contents .category-nav .category-mds.pc-view::before {
    content: "";
    width: 8vw;
    height: 1px;
    background: #FE6D0D;
    position: absolute;
    top: 20px;
    left: -8vw;
  }
  .nav-contents .category-nav .category-mds.pc-view .mds-en {
    font-family: 'Montserrat', sans-serif;
    color: #453932;
    font-size: 18px;
    margin-left: 15px;
    vertical-align: middle;
  }
  .nav-contents .category-nav .category-mds.pc-view .txt-jp {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #9b9b9b;
    font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic", "游ゴシック", YuGothic, "メイリオ", Meiryo,sans-serif;
  }
  .nav-contents .category-nav .category-mds.pc-view::before {
    width: 50px;
    left: 0;
  }
  .nav-contents .category-nav .category-mds.pc-view .txt-jp {
    font-weight: bold;
    display: inline-block;
    margin-left: 15px;
  }
  .nav-contents .category-nav .category-mds.pc-view .mds-en {
    font-size: 14px;
  }
  .nav-contents .category-nav .category-mds.pc-view::before {
    width: 40px;
  }
  .nav-contents .category-nav .category-wrapper {
    margin-bottom: 15px;
  }
  .nav-contents .category-nav .category-wrapper ul {
    padding: 0;
  }
  .nav-contents .category-nav .category-wrapper ul li {
    width: calc(100% / 4 - 15px);
    height: auto;
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .nav-contents .category-nav .category-wrapper ul li:nth-child(2n) {
    margin-right: 20px;
  }
  .nav-contents .category-nav .category-wrapper ul li:nth-child(4n) {
    margin-right: 0;
  }
  .nav-contents .category-nav .category-wrapper ul li a {
    padding: 13px 10px;
  }
  .nav-contents .category-nav .acr {
    display: none;
  }
  .nav-contents .area-nav .pc-flex {
    align-items: center;
    flex-wrap: wrap;
  }
  .nav-contents .area-nav .btn-map {
    margin-left: 0;
    margin-right: 85px;
    width: 315px;
  }
  .nav-contents .area-nav .btn-map .inner {
    padding: 5px 15px;
  }
  .nav-contents .area-nav .btn-map svg {
    width: 37px;
  }
  .nav-contents .area-nav .btn-map .txt-jp {
    font-size: 14px;
  }
  .nav-contents .area-nav .btn-map .txt-en {
    font-size: 12px;
  }
  .nav-contents .area-nav .btn-map .view {
    font-size: 10px;
  }
  .nav-contents .area-nav .area {
    flex: 1;
  }
  .nav-contents .area-nav .area li {
    height: 60px;
    margin-right: 16px;
    margin-bottom: 16px;
    width: calc(100% / 4 - 12px);
  }
  .nav-contents .area-nav .area li:nth-child(2n) {
    margin-right: 16px;
  }
  .nav-contents .area-nav .area li:nth-child(4n) {
    margin-right: 0;
  }
  .nav-contents .shop-nav {
    margin-bottom: 25px;
  }
  .nav-contents .shop-nav dl {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .nav-contents .shop-nav dl dd {
    flex: 1;
    margin-left: 0;
  }
  .nav-contents .shop-nav dl dd a:hover {
    opacity: 1;
    text-decoration: none;
  }
  .nav-contents .shop-nav .link-mds {
    width: 135px;
  }
  .nav-contents .shop-nav dl dd a {
    width: calc(100% / 6);
  }
  .nav-contents .link-nav ul li {
    width: 100px;
    font-size: 14px;
  }
}

.btn-map {
  background: #fff;
  margin-bottom: 48px;
}

.btn-map .inner-map {
  background: #FE6D0D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.btn-map .icon {
  fill: none;
  stroke: #fff;
  width: 37px;
  height: 37px;
}

.btn-map .arrow {
  width: 21px;
  height: 4px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -10px;
}

.btn-map .txt-jp {
  font-weight: bold;
}

.btn-map .txt-en {
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.btn-map .view {
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .btn-map {
    width: 611px;
    margin: 0 auto 70px;
  }
  .btn-map .inner-map {
    padding: 10px 20px 10px 10px;
  }
  .btn-map .icon {
    width: 54px;
    height: 54px;
  }
  .btn-map .arrow {
    width: 26px;
    height: 5px;
    right: -12px;
  }
  .btn-map .txt-jp {
    font-size: 22px;
  }
  .btn-map .txt-en {
    font-size: 14px;
  }
  .btn-map .view {
    font-size: 14px;
  }
}

.lang-nav {
  display: none;
  z-index: 1;
}

.lang-nav ul {
  background: #fff;
  width: 96px;
  margin-left: auto;
  margin-right: 55px;
}

.lang-nav ul li {
  text-align: center;
  font-size: 12px;
}

.lang-nav ul li a {
  display: block;
  padding: 8px;
}

@media screen and (min-width: 769px) {
  .lang-nav {
    position: absolute;
    width: 310px;
    right: 65px;
    top: initial;
  }
}

/* 一番上のメニュー-------------------------------------------*/
.top-nav {
  display: none;
}

@media screen and (min-width: 769px) {
  .top-nav {
    display: block;
    background: #fdf7f2;
  }
  .top-nav ul {
    max-width: 830px;
    margin: 0 auto;
    padding: 13px 10px;
    display: flex;
    justify-content: space-between;
  }
  .top-nav ul li {
    font-size: 12px;
    font-weight: bold;
  }
  .top-nav ul li a {
    display: flex;
    align-items: center;
  }
  .top-nav ul li a:hover {
    color: #FE6D0D;
    opacity: 1;
  }
  .top-nav ul li a:hover img {
    opacity: 1;
  }
  .top-nav ul li .logo {
    display: none;
    margin-right: 8px;
  }
}

/* 下層タイトル-------------------------------------------*/
.ttl-area {
  background: linear-gradient(to right, #fffaea 0%, #fee4ce 100%);
  padding: 25px;
  position: relative;
}

.ttl-area:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 102px;
  height: 100%;
  background: url(../images/common/bg-dot01-sp.png) no-repeat;
  background-size: contain;
}

.ttl-mds {
  font-size: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.ttl-mds .ttl-jp {
  font-size: 12px;
  font-weight: bold;
  display: block;
}

@media screen and (min-width: 769px) {
  .ttl-area {
    padding: 50px 0;
    overflow: hidden;
  }
  .ttl-area:before {
    width: 250px;
    height: 250px;
    right: -30px;
  }
  .ttl-mds {
    font-size: 55px;
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 10px;
  }
  .ttl-mds .ttl-jp {
    font-size: 18px;
  }
}

/* パンくず-------------------------------------------*/
.breadcrumb-area {
  background: #fff;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
}

.breadcrumb-area .breadcrumb {
  margin: 0 30px;
  font-size: 10px;
}

.breadcrumb-area .breadcrumb a {
  text-decoration: underline;
  color: #FE6D0D;
}

.breadcrumb-area .breadcrumb li {
  position: relative;
  padding-right: 22px;
  display: inline;
}

.breadcrumb-area .breadcrumb li:after {
  position: absolute;
  content: "";
  vertical-align: middle;
  transform: rotate(45deg);
  border-top: 1px solid #898888;
  border-right: 1px solid #898888;
  left: auto;
  width: 5px;
  height: 5px;
  right: 7px;
  bottom: 0;
  top: 0;
  margin: auto;
  text-decoration: none;
}

.breadcrumb-area .breadcrumb li:last-child:after {
  content: none;
}

.breadcrumb-area .breadcrumb li:last-child a {
  text-decoration: none;
}

.breadcrumb-area .current a {
  text-decoration: none;
  color: #453932;
}

@media screen and (min-width: 769px) {
  .breadcrumb-area {
    padding: 15px 0;
  }
  .breadcrumb-area .breadcrumb {
    font-size: 14px;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1100px;
  }
}

/* コンテンツエリア-------------------------------------------*/
.main-area {
  padding: 25px 0 0;
}

@media screen and (min-width: 769px) {
  .main-area {
    padding-top: 78px;
  }
}

/* 検索エリア-------------------------------------------*/
/* セレクトボックス-------------------------------------------*/
/* 検索フォーム-------------------------------------------*/
.keyword-box form {
  width: 100%;
  display: flex;
  position: relative;
}

.keyword-box input[type="text"] {
  outline: none;
  border: none;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #FE6D0D;
  width: 100%;
  height: 36px;
  font-size: 12px;
  padding: 0 10px;
}

.keyword-box input[type="text"]::placeholder {
  color: #9A9795;
  font-size: 10px;
}

.keyword-box .search-submit {
  border-radius: 50%;
  width: 31px;
  height: 31px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
  background: #FE6D0D url("/assets/corporate/images/common/icon-search-s.svg") no-repeat center center;
  background-size: 20px 20px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 5px;
}

@media screen and (min-width: 769px) {
  .keyword-box input[type="text"] {
    border-radius: 23.5px;
    height: 47px;
    font-size: 14px;
    padding: 0 27px;
  }
}

/* お知らせ共通パーツ-------------------------------------------*/
/* カテゴリ一覧パーツ-------------------------------------------*/
/* エリアから探すパーツ-------------------------------------------*/
.area-list li {
  background: #fff;
  margin-bottom: 15px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.03);
}

.area-list li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.area-list li .img-box {
  width: 26vw;
  overflow: hidden;
}

.area-list li .img-box img {
  width: 26.5vw;
}

.area-list li .txt-box {
  padding: 20px;
  font-size: 12px;
  flex: 1;
}

.area-list li .logo-box {
  text-align: center;
  margin-bottom: 8px;
}

.area-list li .logo-box img {
  width: 148px;
}

.area-list li .logo-box .logo04 {
  width: 134px;
}

.area-list li .logo-box .logo05 {
  width: 137px;
}

.area-list li .logo-box .logo06 {
  width: 134px;
}

.area-list li .logo-box .logo07 {
  width: 106px;
}

@media screen and (min-width: 769px) {
  .area-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  .area-list li {
    width: calc(100% / 2 - 20px);
    margin-right: 40px;
    margin-bottom: 30px;
  }
  .area-list li:nth-child(2n) {
    margin-right: 0;
  }
  .area-list li .img-box {
    width: 148px;
  }
  .area-list li .logo-box {
    margin-bottom: 10px;
  }
  .area-list li .logo-box img {
    width: 226px;
  }
  .area-list li .logo-box .logo04 {
    width: 205px;
  }
  .area-list li .logo-box .logo05 {
    width: 210px;
  }
  .area-list li .logo-box .logo06 {
    width: 205px;
  }
  .area-list li .logo-box .logo07 {
    width: 166px;
  }
}

/* ショップ詳細共通パーツ-------------------------------------------*/
.shopinfo-box .shop-logo {
  width: 115px;
}

.shop-txt {
  margin-right: 20px;
  flex: 1;
}

.shop-txt .floor {
  color: #FE6D0D;
  border: 1px solid #FE6D0D;
  padding: 2px 5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 8px;
  display: inline-block;
}

.shop-txt .category {
  font-size: 13px;
  font-weight: bold;
  color: #FE6D0D;
  margin-bottom: 6px;
  flex: 1;
}

.shop-txt .shopname {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .shopinfo-box .shop-logo {
    width: 232px;
    margin-right: 40px;
  }
  .shop-txt .pc-flex {
    align-items: flex-start;
    margin-bottom: 15px;
  }
  .shop-txt .floor {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .shop-txt .category {
    font-size: 14px;
    margin-bottom: 0;
  }
  .shop-txt .shopname {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

/* 過去記事のセレクター-------------------------------------------*/
.selector-wrapper {
  background: #fff;
  color: #FE6D0D;
  width: 63.5%;
  margin: 0 auto 35px;
  font-size: 12px;
}

.year-mds {
  padding: 14px 10px 14px 25px;
  margin-left: 0;
  display: block;
  cursor: pointer;
  position: relative;
}

.year-mds:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 10%;
  right: 8%;
  margin: auto;
  left: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #FE6D0D;
  border-right: 2px solid #FE6D0D;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
  transition: all 0.3s ease;
}

.year-mds.active::before {
  transform: rotate(-45deg);
}

.selector-list {
  display: none;
  max-height: 200px;
  overflow: scroll;
  position: absolute;
  z-index: 3;
  background: #fff;
  width: 63.5%;
}

.selector-list li {
  padding: 8px 0;
  margin: 0 25px;
  position: relative;
  border-top: 1px solid #EFEFEF;
}

@media screen and (min-width: 769px) {
  .selector-wrapper {
    width: 200px;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .year-mds {
    padding: 17px 10px 17px 25px;
    width: 200px;
  }
  .year-mds::before {
    right: 22%;
  }
  .selector-list {
    width: 100%;
    margin-left: 0;
    width: 200px;
  }
}

/* ブログ・ニュース＆イベント一覧共通パーツ-------------------------------------------*/
.article-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 18px;
}

.article-list li {
  width: calc(100% / 2 - 8px);
  margin-right: 15px;
  margin-bottom: 20px;
  background: #fff;
  z-index: 1;
}

.article-list li:nth-child(2n) {
  margin-right: 0;
}

.article-list li a {
  background: #fff;
  display: block;
  color: #453932;
  height: 100%;
}

.article-list li .icon-new {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #FE6D0D;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  z-index: 1;
}

.article-list li .img-area {
  background: #fff;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.article-list li .img-area:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.article-list li .img-area img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  border: none !important;
}

.article-list li .img-area .img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-size: cover;
  filter: blur(10px);
  opacity: 0.6;
  overflow: hidden;
}

.article-list li .txt-area {
  padding: 10px 15px 20px;
}

.article-list li .date {
  font-size: 12px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #bebab7;
  position: relative;
  font-weight: bold;
}

.article-list li .date::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #FE6D0D;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -15px;
}

.article-list li .title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 13px;
  margin-bottom: 5px;
}

.article-list li .shopname {
  font-size: 12px;
  margin-bottom: 10px;
}

.article-list li .floor {
  color: #FE6D0D;
  border: 1px solid #FE6D0D;
  padding: 2px 5px;
  font-size: 10px;
  text-align: center;
  display: inline-block;
}

.article-list li.noinfo {
  width: 100%;
  text-align: center;
  background: transparent;
  padding: 0 0 20px;
  margin: 0;
}

@media screen and (min-width: 769px) {
  .article-list {
    margin: 0;
  }
  .article-list li {
    width: calc(100% / 4 - 18px);
    margin-right: 24px;
    margin-bottom: 40px;
  }
  .article-list li:nth-child(2n) {
    margin-right: 24px;
  }
  .article-list li:nth-child(4n) {
    margin-right: 0;
  }
  .article-list li a {
    display: block;
  }
  .article-list li a:hover {
    opacity: 0.7;
  }
  .article-list li a:hover .filter-more {
    opacity: 1;
    display: flex;
  }
  .article-list li .icon-new {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
  }
  .article-list li .icon-new::after {
    border-width: 70px 70px 0 0;
  }
  .article-list li .icon-new span {
    font-size: 12px;
    right: -6px;
    top: 10px;
  }
  .article-list li .img-area {
    margin-bottom: 10px;
  }
  .article-list li .img-area .icon-category {
    font-size: 14px;
  }
  .article-list li .txt-area {
    padding: 5px 30px 25px;
    line-height: 1.6;
  }
  .article-list li .date {
    font-size: 14px;
  }
  .article-list li .date::before {
    width: 15px;
    left: -30px;
  }
  .article-list li .date-wrapper {
    display: flex;
  }
  .article-list li .date-wrapper .floor {
    font-size: 14px;
  }
  .article-list li .title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
  .article-list li .floor {
    font-size: 12px;
  }
  .article-list.blog li {
    margin-bottom: 40px;
  }
}

/* WYSIWYG-------------------------------------------*/
.blog-detail-box {
  background: #fff;
  margin: 15px 12px;
  padding: 55px 5vw 0;
  position: relative;
}

.blog-detail-box .dot-bg {
  display: none;
}

.blog-detail-box .date {
  background-color: #FE6D0D;
  color: #fff;
  display: table;
  margin: 0 0 25px auto;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  padding: 1px 10px;
}

.blog-detail-box .ttl {
  font-weight: bold;
  margin-top: -70px;
  margin-bottom: 11px;
  font-size: 18px;
}

.blog-detail-box .url {
  margin-bottom: 5px;
}

.blog-detail-box .url a {
  text-decoration: underline;
}

.blog-detail-box .main-txt-box {
  margin-bottom: 30px;
}

.main-txt-box p {
  margin: 0 0 5px;
  line-height: 2;
}

.main-txt-box a {
  text-decoration: underline;
  color: #FE6D0D;
}

.main-txt-box strong, .main-txt-box b {
  font-weight: bold;
}

.main-txt-box em {
  font-style: italic;
}

.main-txt-box img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  max-height: 600px;
  width: auto;
  height: auto;
  padding: 10px 0;
}

.main-txt-box ul {
  list-style-type: disc;
}

.main-txt-box ol {
  list-style-type: decimal;
}

.main-txt-box table th {
  text-align: center;
  vertical-align: inherit;
  font-weight: bold;
}

.main-txt-box .fwN, .main-txt-box caption, .main-txt-box h1, .main-txt-box h2, .main-txt-box h3, .main-txt-box h4, .main-txt-box h5, .main-txt-box h6, .main-txt-box td, .main-txt-box th {
  margin: 0;
}

.main-txt-box h1 {
  font-size: 2em;
}

.main-txt-box h2 {
  font-size: 1.5em;
}

.main-txt-box h3 {
  font-size: 1.17em;
}

.main-txt-box h4 {
  font-size: 1em;
}

.main-txt-box h5 {
  font-size: 0.83em;
}

.main-txt-box h6 {
  font-size: 0.67em;
}

.main-txt-box hr {
  display: block;
}

.main-txt-box .share-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 50px;
  list-style-type: none;
}

.main-txt-box .share-list li {
  margin-right: 15px;
  width: 32px;
}

.main-txt-box .share-list:last-child {
  margin-right: 0;
}

.main-txt-box .share-list .share-ttl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-right: 20px;
  width: auto;
}

@media screen and (min-width: 769px) {
  .blog-detail-box {
    margin: 0 auto;
    padding: 55px 6% 0;
    max-width: 1100px;
  }
  .blog-detail-box .dot-bg {
    display: block;
    position: absolute;
    top: -37px;
    left: -68px;
    width: 134px;
  }
  .blog-detail-box .date {
    font-size: 14px;
    max-width: 600px;
    margin: 0 0 50px auto;
  }
  .blog-detail-box .ttl {
    font-size: 24px;
    max-width: 600px;
    margin: -75px auto 15px;
  }
  .main-txt-box .url {
    margin-bottom: 20px;
  }
  .main-txt-box .share-list {
    justify-content: flex-end;
  }
}

/* ページャー-------------------------------------------*/
.pager-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 40px;
  padding: 0 30px;
}

.pager-box li {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  width: 50%;
  text-align: center;
  margin: 0 6.5px;
  border-bottom: 1px solid #FE6D0D;
}

.pager-box li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 15px;
  color: #FE6D0D;
}

.pager-box li .icon-arrow02 {
  position: absolute;
  top: 30px;
}

.pager-box .btn-back .icon-arrow02 {
  left: 30px;
}

.pager-box .btn-back .icon-arrow02::before {
  transform: skew(1, -1);
}

.pager-box .btn-next .icon-arrow02 {
  right: 30px;
}

.pager-box .disable {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 769px) {
  .pager-box {
    max-width: 350px;
    margin: 50px auto 60px;
  }
  .pager-box li {
    margin: 0 15px;
    font-size: 20px;
  }
  .pager-box li .icon-arrow02 {
    top: 35px;
  }
}

/* 右下のPAGETOPボタン-------------------------------------------*/
.btn-pagetop {
  cursor: pointer;
  transition: 0.3s;
  position: fixed;
  bottom: 5%;
  right: 3%;
  z-index: 9;
  display: block !important;
  opacity: 1;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.btn-pagetop::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FE6D0D;
  border-right: 2px solid #FE6D0D;
  transform: rotate(315deg);
}

.btn-hide {
  opacity: 0;
  visibility: hidden;
  transition: all  0.3s;
}

.btn-hide:hover {
  visibility: hidden;
}

@media screen and (min-width: 769px) {
  .btn-pagetop {
    width: 55px;
    height: 55px;
  }
  .btn-pagetop::before {
    top: 6px;
    width: 10px;
    height: 10px;
  }
  .btn-pagetop:hover {
    background: #FE6D0D;
  }
  .btn-pagetop:hover::before {
    border-color: #fff;
  }
  .btn-hide {
    opacity: 0;
    visibility: hidden;
    transition: all  0.3s;
  }
}

/* 静的ページの共通パーツ-------------------------------------------*/
/* フッター-------------------------------------------*/
.cmn-ft .sns-area .box-inner {
  margin: 0 30px;
}

.cmn-ft .sns-area h2 {
  position: relative;
  font-weight: bold;
  font-size: 26px;
  padding-left: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  margin-bottom: 25px;
  margin-top: -20px;
}

.cmn-ft .sns-area h2::before {
  content: "";
  width: 8vw;
  height: 2px;
  background: #FE6D0D;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -8vw;
}

.cmn-ft .sns-area h2 .ttl-jp {
  font-size: 12px;
  margin-left: 15px;
}

.cmn-ft .sns-area .sns-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.cmn-ft .sns-area .sns-list li {
  width: 50%;
  padding-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
}

.cmn-ft .sns-area .sns-list li a {
  display: flex;
  align-items: center;
}

.cmn-ft .sns-area .sns-list li .icon {
  width: 35px;
  margin-right: 8px;
}

.cmn-ft .sns-area .sns-list li .txt {
  line-height: 1.2;
  color: #453932;
}

.cmn-ft .sns-area .sns-list li .txt .font-l {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.cmn-ft .bnr-area {
  background: linear-gradient(to right, #fffaea 0%, #fee4ce 100%);
}

.cmn-ft .bnr-area .bnr-list {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 30px 40px;
}

.cmn-ft .bnr-area .bnr-list li {
  width: calc(100% / 2 - 8px);
  margin-right: 15px;
  margin-bottom: 13px;
  text-align: center;
  background: #fff;
}

.cmn-ft .bnr-area .bnr-list li:nth-child(2n) {
  margin-right: 0;
}

.cmn-ft .icon-arrow01 {
  margin-left: 5px;
}

.cmn-ft .icon-arrow01::before {
  border-color: #fff;
}

@media screen and (min-width: 769px) {
  .cmn-ft .sns-area .box-inner {
    display: flex;
    align-items: center;
    max-width: 1100px;
    padding: 50px 0;
    margin: 0 auto;
  }
  .cmn-ft .sns-area h2 {
    margin-top: 0;
    padding-left: 65px;
    margin-right: auto;
    margin-bottom: 0;
  }
  .cmn-ft .sns-area h2::before {
    width: 50px;
    left: 0;
  }
  .cmn-ft .sns-area .sns-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 720px;
    width: 100%;
    padding-bottom: 0;
  }
  .cmn-ft .sns-area .sns-list li {
    padding-bottom: 0;
    font-size: 14px;
    margin-right: 30px;
  }
  .cmn-ft .sns-area .sns-list li:nth-child(1) {
    width: 170px;
  }
  .cmn-ft .sns-area .sns-list li:nth-child(2) {
    width: 180px;
  }
  .cmn-ft .sns-area .sns-list li:nth-child(3) {
    width: 135px;
  }
  .cmn-ft .sns-area .sns-list li:nth-child(4) {
    width: 104px;
    margin-right: 0;
  }
  .cmn-ft .sns-area .sns-list li .icon {
    margin-right: 15px;
    width: 47px;
  }
  .cmn-ft .bnr-area .bnr-list {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .cmn-ft .bnr-area .bnr-list li {
    width: calc(100% / 4 - 15px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .cmn-ft .bnr-area .bnr-list li:nth-child(2n) {
    margin-right: 20px;
  }
  .cmn-ft .bnr-area .bnr-list li:nth-child(4n) {
    margin-right: 0;
  }
  .cmn-ft .icon-arrow01 {
    margin-left: 10px;
  }
}

.ft-area {
  background: #FE6D0D;
  color: #fff;
  padding: 50px 40px 25px;
}

.ft-area a {
  color: #fff;
}

.ft-area .contents-l {
  text-align: center;
  margin-bottom: 25px;
}

.ft-area .contents-l .ft-logo {
  margin: 0 auto 18px;
  width: 211px;
}

.ft-area .contents-l .ft-logo svg {
  fill: #fff;
  width: 100%;
}

.ft-area .contents-l .ft-logo svg:nth-child(2) {
  width: 169px;
}

.ft-area .contents-l .ft-ttl {
  font-size: 16px;
  font-weight: bold;
}

.ft-area .contents-r .link-mds {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  padding-left: 20px;
  margin-right: 20px;
  border-left: 1px solid #fff;
}

.ft-area .contents-r ul {
  display: flex;
  flex-wrap: wrap;
}

.ft-area .contents-r ul li {
  font-size: 12px;
}

.ft-area .contents-r ul li a {
  text-decoration: underline;
  font-weight: bold;
}

.ft-area .contents-r dl dt {
  margin-bottom: 5px;
}

.ft-area .contents-r dl dd {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  margin-left: 20px;
}

.ft-area .contents-r dl dd a {
  display: block;
  text-decoration: underline;
}

.ft-area .contents-r .link01 {
  margin-bottom: 25px;
  margin-right: -30px;
  justify-content: center;
}

.ft-area .contents-r .link01 li {
  font-size: 14px;
  margin-bottom: 15px;
  margin-right: 30px;
}

.ft-area .contents-r .link02 {
  margin-bottom: 30px;
}

.ft-area .contents-r .link03 {
  margin-bottom: 15px;
}

.ft-area .contents-r .link03 dd a {
  width: 50%;
  margin-bottom: 12px;
}

.ft-area .contents-r .link04 {
  margin-bottom: 30px;
}

.ft-area .contents-r .ft-logo2 {
  width: 63px;
  margin: 0 auto 20px;
}

.ft-area .contents-r .ft-logo2 svg {
  fill: #fff;
}

.ft-area .contents-r .copyright {
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

@media screen and (min-width: 769px) {
  .ft-area {
    padding: 65px 40px 30px;
  }
  .ft-area a {
    transition: all 0.3s ease;
  }
  .ft-area .pc-flex {
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
  }
  .ft-area .contents-l {
    margin-right: 56px;
    width: 394px;
  }
  .ft-area .contents-l .ft-logo {
    width: 248px;
    margin-bottom: 30px;
  }
  .ft-area .contents-l .ft-logo svg:nth-child(2) {
    width: 200px;
  }
  .ft-area .contents-l .ft-ttl {
    margin-bottom: 0;
  }
  .ft-area .contents-l .ft-ttl .pc-view {
    display: inline-block !important;
  }
  .ft-area .contents-r .link-mds {
    width: 135px;
  }
  .ft-area .contents-r ul li a:hover {
    opacity: 1;
    text-decoration: none;
  }
  .ft-area .contents-r dl {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .ft-area .contents-r dl dd {
    flex: 1;
    margin-left: 0;
  }
  .ft-area .contents-r dl dd a:hover {
    opacity: 1;
    text-decoration: none;
  }
  .ft-area .contents-r .link01 {
    margin-bottom: 15px;
    margin-right: 0;
    justify-content: flex-start;
  }
  .ft-area .contents-r .link03 dd a {
    width: calc(100% / 4 - 13px);
    margin-bottom: 10px;
  }
  .ft-area .contents-r .ft-logo2 {
    width: 43px;
    margin: 0 30px 0 0;
  }
}

/*# sourceMappingURL=_map/common.css.map */
