@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900);
@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700);
@import url(https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@400;500;600;700);

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Tables
 *   1.5  Breadcrumb
 *   1.6  Buttons
 *   1.7  Lists
 *   1.8  Forms
 *   1.9 Div Wraps
 *   1.10 Animations
 *   1.11 Other Elements
 *        1.11.1 plugins
 *        1.11.2 page top
 *        1.11.3 modal
 * 2. HEADER
 * 	  2.1 Main Nav
 *        2.1.1 main-nav
 *        2.1.2 sns Icon
 * 3. MAIN VISUAL
 * 4. CONTENT
 * 	  4.1 Content
 *        4.1.1 naka main
 *        4.1.2 sidebar
 * 	  4.2 Cate Ttl
 *    4.3 Tag
 *    4.4 Icon Number
 *    4.5 Img List
 *    4.6 Recommend
 *    4.7 Search
 *    4.8 Contact
 * 5. FOOTER
 * 6. PAGER
 * 7. INTERACTIONS
 * 8. 200828 詳細ページ追加
 * 9. 200908 詳細ページTAG追加
 * 10. 200924 商品一覧ページ追加(shopping)
 * 11. 201006 main-nav追加
 * 12. 201006 company追加
 * 13. 201218 トップページ リンク追加
 * 14. 210108 多言語サイトへのリンク追加
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html,
body {
	overflow-x: hidden;
}
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
	letter-spacing: 0;
	background: #fff;
	color: #000;
	line-height: 1.8;
	overflow: hidden;
}
@media (max-width: 767.98px) {
    body {
        font-size: 13px;
    }
}

a {
    color: #000;
    text-decoration: none;
}
a:hover {
    cursor: pointer;
    color: #000;
    text-decoration: underline;
}
a:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media (max-width: 767.98px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

hr {
     border-top: 1px solid #d5d5d5;
     margin-top: 20px;
     margin-bottom: 20px;
}
@media (max-width: 767.98px) {
    hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong.bold50 {
    font-weight: 500;
}
strong {
    font-weight: 600;
}

.section-wrap {
    width: 100%;
    padding: 0;
    margin: 6rem 0;
}
@media (max-width: 767.98px) {
    .section-wrap {
        margin: 4rem 0;
    }
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.row-list .col-6 {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
@media (max-width: 767.98px) {
    .row-list .col-6 {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 25px;
    }
}

/* 1.1  Margin
 * ------------------------------*/
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt80 { margin-top: 80px !important; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }

@media (max-width: 767.98px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 10px !important;
    }
    .mt20-xs {
        margin-top: 20px !important;
    }
    .mt30-xs {
        margin-top: 30px !important;
    }
    .mt40-xs {
        margin-top: 40px !important;
    }
    .mt50-xs {
        margin-top: 50px !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb10-xs {
        margin-bottom: 10px !important;
    }
    .mb20-xs {
        margin-bottom: 20px !important;
    }
    .mb30-xs {
        margin-bottom: 30px !important;
    }
    .mb40-xs {
        margin-bottom: 40px !important;
    }
    .mb50-xs {
        margin-bottom: 50px !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    line-height: 1.8;
}
.line-height2 {
    line-height: 2 !important;
}
.line-height235 {
    line-height: 2.35 !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
@media (max-width: 767.98px) {
    p {
        line-height: 1.8 !important;
    }
    .line-height2,
    .line-height235 {
        line-height: 1.8 !important;
    }
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
}

.letter-spacing00 {
    letter-spacing: 0 !important;
}

.txt-bb-gothic {
    font-family: 'Gothic Medium BBB', sans-serif !important;
}

.txt-roboto {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em;
}
.txt-roboto.bold40 {
    font-weight: 400 !important;
}
.txt-roboto.bold50 {
    font-weight: 500 !important;
}
.txt-roboto.bold70 {
    font-weight: 700 !important;
}
.txt-roboto.bold90 {
    font-weight: 900 !important;
}

.txt-roboto-condensed {
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em;
}
.txt-roboto-condensed.bold40 {
    font-weight: 400 !important;
}
.txt-roboto-condensed.bold70 {
    font-weight: 700 !important;
}

.txt-saira {
    font-family: 'Saira Extra Condensed', sans-serif !important;
    font-weight: 400 !important;
}
.txt-saira.bold50 {
    font-weight: 500 !important;
}
.txt-saira.bold60 {
    font-weight: 600 !important;
}
.txt-saira.bold70 {
    font-weight: 700 !important;
}

.txt-tag {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em;
    word-break: break-word;
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #f2142b !important;
}
.txt-black,
.txt-black a,
.txt-black a:hover {
    color: #000 !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

/* fallback for IE */
.txt-clamp.line2 {
  display: block;
  overflow: hidden;
  line-height: 25px;
  height: 50px; /* 25px * 2 lines */
}
@supports (-webkit-line-clamp: 2) {
  .txt-clamp.line2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 767.98px) {
    .txt-clamp.line2 {
        line-height: 22px;
        height: 44px;
    }
}

.txt-clamp.line4 {
  display: block;
  overflow: hidden;
  line-height: 25px;
  height: 100px; /* 25px * 4 lines */
}
@supports (-webkit-line-clamp: 4) {
  .txt-clamp.line4 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 767.98px) {
    .txt-clamp.line4 {
        line-height: 22px;
        height: 88px;
    }
}

.day {
    display: block;
    font-family: 'Gothic Medium BBB', sans-serif !important;
    color: #7e7e7e;
}

.f10 { font-size: 10px !important; }
.f11 { font-size: 11px !important; }
.f12 { font-size: 12px !important; }
.f13 { font-size: 13px !important; }
.f14 { font-size: 14px !important; }
.f15 { font-size: 15px !important; }
.f16 { font-size: 16px !important; }
.f17 { font-size: 17px !important; }
.f18 { font-size: 18px !important; }
.f19 { font-size: 19px !important; }
.f20 { font-size: 20px !important; }
.f21 { font-size: 21px !important; }
.f22 { font-size: 22px !important; }
.f23 { font-size: 23px !important; }
.f24 { font-size: 24px !important; }
.f25 { font-size: 25px !important; }
@media (max-width: 991.98px) {
    .f18, .f19 {
        font-size: 16px !important;
    }
    .f20, .f21 {
        font-size: 17px !important;
    }
    .f22, .f23 {
        font-size: 18px !important;
    }
    .f24, .f25 {
        font-size: 20px !important;
    }
}
@media (max-width: 767.98px) {
    .f13, .f14 {
        font-size: 12px !important;
    }
    .f15, .f16 {
        font-size: 13px !important;
    }
    .f17, .f18 {
        font-size: 14px !important;
    }
    .f19, .f20, .f21 {
        font-size: 15px !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 16px !important;
    }
    .f15-xs {
        font-size: 15px !important;
    }
    .f14-xs {
        font-size: 14px !important;
    }
    .f13-xs {
        font-size: 13px !important;
    }
    .f12-xs {
        font-size: 12px !important;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.section-ttl {
    margin: 0 0 30px;
    padding: 0 0 10px;
    font-size: 31px;
    line-height: 1;
    font-family: 'Saira Extra Condensed', sans-serif !important;
    font-weight: 600;
    border-bottom: 1px solid #d5d5d5;
}
@media (max-width: 767.98px) {
    .section-ttl {
        font-size: 25px;
        margin-bottom: 15px;
        text-align: center;
    }
    .section-ttl.ja {
        font-size: 18px;
    }
}

/* 1.4 Tables
 * ------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
	border: 1px solid #ccc;
}
table th {
	padding: 10px;
	vertical-align: middle;
	font-weight: normal;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background: #e5e4dd;
}
table td {
	padding: 10px;
	vertical-align: middle;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

/* 1.5 Breadcrumb
 * ------------------------------*/
/* 1.6 Buttons
 * ------------------------------*/
.btn {
    display: block;
    width: 100%;
    max-width: 240px;
    margin: 30px auto 10px;
    border-radius: 0;
    font-size: 20px;
    line-height: 1;
    padding: 15px 10px;
    box-sizing: border-box;
    position: relative;
    border: 1px solid #000;
    color: #000;
    background: inherit;
    font-weight: 600;
    outline: none;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
  z-index: -1;
}
.btn:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.btn:hover,
.btn:focus,
.btn:active {
  color: #fff !important;
  text-decoration: none;
}
.btn:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
@media (max-width: 767.98px) {
    .btn {
        font-size: 15px;
        max-width: 200px;
        padding: 12px 10px;
        margin-top: 20px;
    }
}

.btn.white {
    border-color: #fff;
    color: #fff;
}
.btn.white::before {
    background: #fff;
}
.btn.white:hover,
.btn.white:focus,
.btn.white:active {
  color: #000 !important;
  text-decoration: none;
}

/* 1.7 Lists
 * ------------------------------*/
dl.dl-list {
    width: 100%;
    display: table;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #000;
}
dl.dl-list + dl.dl-list {
    border-top: none;
}
dl.dl-list dt {
    width: 28%;
    display: table-cell;
    padding: 20px 10px;
    font-weight: 400;
    line-height: 2;
    vertical-align: middle;
}
dl.dl-list dd {
    width: 72%;
    display: table-cell;
    padding: 20px 10px;
    line-height: 2;
    vertical-align: middle;
}
@media (max-width: 767.98px) {
    dl.dl-list dt,
    dl.dl-list dd {
        display: block;
        width: 100% !important;
        line-height: 1.8;
    }
    dl.dl-list dt {
        padding: 15px 0 5px;
    }
    dl.dl-list dd {
        padding: 5px 0 15px;
    }
    dl.dl-list.bdnone-xs {
        border-top: none;
    }
}

ul.list-base {
    line-height: 1.9;
}
ul.list-base li {
    margin-bottom: 2px;
}

ul.disc-list {
    list-style: disc;
    margin: 0 0 10px 25px;
}

ol.ol-list {
    padding: 0;
    margin: 0 0 10px 22px;
    line-height: 1.9;
}

/* 1.8 Forms
 * ------------------------------*/
form {
    margin: 0;
    padding: 0;
}
input::-webkit-input-placeholder {
    color: #d5d5d5;
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.02em;
}
input:-moz-placeholder {
    color: #d5d5d5;
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.02em;
}
input::-moz-placeholder {
    color: #d5d5d5;
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.02em;
}
input:-ms-input-placeholder {
    color: #d5d5d5;
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.02em;
}

/* 1.9 DIV Wraps
 * ------------------------------*/
/* 1.10 Animations
 * ------------------------------*/
/* 1.11 Other Elements
 * ------------------------------*/
/* 1.11.1 plugins ------------*/
.googlemap iframe {
	margin: 0;
	padding: 0;
}
@media (max-width: 767.98px) {
	.googlemap {
		position: relative;
		padding-bottom: 75%;
		height: 0;
		overflow: hidden;
	}
	.googlemap iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
}

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important;
}
.fb_iframe_widget {
  margin: 20px 0;
}

/* 1.11.2 page top ------------*/
#pagetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    z-index: 1000;
    transition: background-color 400ms;
    background: rgba(0,0,0,0.7) url(../image/pagetop.png) 50% 45% no-repeat;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
}
#pagetop:hover {
    cursor: pointer;
    background: rgba(0,0,0,1) url(../image/pagetop.png) 50% 45% no-repeat;
}
@media (max-width: 767.98px) {
    #pagetop {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        right: 16px;
    }
}

/* 1.11.3 modal ------------*/
/*--- Color Box ---*/
#colorbox, #cboxOverlay, #cboxWrapper {
    z-index: 10200 !important;
    height: 170px !important;
    position: absolute !important;
}
#cboxOverlay {
    background: #000 !important;
    opacity: 1 !important;
    filter: alpha(opacity = 1) !important;
}
#cboxLoadedContent {
    border: none !important;
}
#cboxLoadingOverlay {
    background: none;
}
@media (max-width: 991.98px) {
    #colorbox, #cboxOverlay, #cboxWrapper {
        height: 150px !important;
    }
}
@media (max-width: 767.98px) {
    #colorbox, #cboxOverlay, #cboxWrapper {
        height: 100px !important;
    }
}

#cboxClose {
    width: 27px;
    height: 27px;
    top: 12px;
    right: 0;
    outline: none;
    background: url(../image/icon-close.svg?=200827) 0 0 no-repeat;
    background-size: 27px 27px;
}
#cboxClose:hover {
    opacity: 0.7;
    transition: 0.7s;
}
@media (max-width: 991.98px) {
    #cboxClose {
        right: 15px;
    }
}
@media (max-width: 767.98px) {
    #cboxClose {
        top: 0;
        right: 0;
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100%;
    height: 150px;
    margin: 0;
    padding: 33px 0 0 15px;
    box-sizing: border-box;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
body#top-page header {
    /* height: 215px; */
    height: 260px;
}
header .container-fluid {
    position: relative;
}
header .logo {
    width: 390px;
}
body#top-page header .logo {
    width: 555px;
}
header .logo a {
    display: block;
}
header .logo img {
    display: block;
    width: 390px;
    /* height: 79px; */
    height: auto;
}
body#top-page header .logo img {
    width: 555px;
    /* height: 113px; */
    height: auto;
}
header .logo a:hover {
    opacity: 0.6;
    transition: 0.7s;
}
@media (max-width: 1199.98px) {
    body#top-page header {
        height: 200px;
        margin-bottom: 16px;
    }
    body#top-page header .logo {
        width: 450px;
    }
    body#top-page header .logo img {
        width: 450px;
        /* height: 92px; */
    }
}
@media (max-width: 991.98px) {
    header {
        height: 150px !important;
    }
    header .logo {
        width: 320px !important;
    }
    header .logo img {
        width: 320px !important;
        /* height: 65px !important; */
    }
}
@media (max-width: 767.98px) {
    header {
        padding: 19px 0 0 0;
        height: 70px !important;
    }
    header .logo {
        width: 160px !important;
    }
    header .logo img {
        width: 160px !important;
        /* height: 33px !important; */
    }
}

header ul.sns-list {
    position: absolute;
    top: 55px;
    right: 33px;
    margin: 0;
}
@media (max-width: 767.98px) {
    header ul.sns-list {
        display: none;
    }
}

.search {
    margin: 0;
    top: 1px;
    right: 105px;
    position: absolute;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.fa-search {
    display: block;
    font-size: 30px;
    color: #000;
}
.search a {
    display: block;
}
.search a:hover {
    text-decoration: none;
}
#modal-search .modal-cont {
    width: 100%;
    padding: 35px 0;
    background: #000;
}
#modal-search .modal-cont .search {
    position: relative;
    width: 1000px;
    top: 0;
    left: 0;
    margin: 0;
    -webkit-animation: fadeIn 0s linear both;
    animation: fadeIn 0s linear both;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
#modal-search .modal-cont .search input[type=text] {
    display: block;
    width: 800px;
    height: 55px;
    line-height: 1.3;
    margin: 0 auto;
    padding: 6px 10px 0 10px;
    border: none;
    box-sizing: border-box;
}
@media (max-width: 1199.98px) {
    .search {
        top: 2px;
    }
    #modal-search .modal-cont .search {
        width: 800px;
    }
    #modal-search .modal-cont .search input[type=text] {
        width: 600px;
    }
}
@media (max-width: 991.98px) {
    #modal-search .modal-cont {
        padding-top: 26px;
    }
    #modal-search .modal-cont .search {
        width: 650px;
    }
    #modal-search .modal-cont .search input[type=text] {
        width: 450px;
    }
}
@media (max-width: 767.98px) {
    .search {
        /* top: 1px; */
        top: 12px;
        right: 53px;
    }
    .fa-search {
        font-size: 20px;
    }
    #modal-search .modal-cont {
        padding: 12px 20px;
    }
    #modal-search .modal-cont .search {
        width: 400px;
    }
    #modal-search .modal-cont .search input[type=text] {
        width: 300px;
        height: 35px;
        padding-top: 0;
    }
}
@media (max-width: 575.98px) {
    #modal-search .modal-cont .search {
        width: 310px;
    }
    #modal-search .modal-cont .search input[type=text] {
        width: 220px;
    }
}
@media (max-width: 320.98px) {
    #modal-search .modal-cont .search {
        width: 260px;
    }
    #modal-search .modal-cont .search input[type=text] {
        width: 180px;
    }
}

.search .btn-submit {
    display: block;
    margin: 0;
    padding: 0;
    color: #fff;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 48%;
    left: 25px;
    transform: translateY(-48%);
    font-size: 40px;
}
.search .btn-submit:hover {
    color: #999;
}
@media (max-width: 767.98px) {
    .search .btn-submit {
        font-size: 28px;
        left: 0;
    }
}
@media (max-width: 320.98px) {
    .search .btn-submit {
        font-size: 25px;
    }
}

/* 2.1 Main Nav
 * ------------------------------*/
/* 2.1.1 main nav ------------*/
#main-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10100 !important;
}

#nav-container {
    margin-left: auto;
    position: relative;
}

#nav-toggle {
    display: block;
    width: 43px;
    height: 33px;
    cursor: pointer;
    position: absolute;
    top: 22px;
    right: 40px;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
#nav-toggle .bar {
    width: 43px;
    height: 6px;
    border-radius: 1px;
    display: block;
    background-color: #000;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
#nav-toggle .bar01 {
    top: 11px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
#nav-toggle .bar02 {
    top: 23px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
#nav-toggle .bar03 {
    top: 35px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
#nav-toggle:hover .bar {
    background-color: #999;
    transition: 0.5s;
}
@media (max-width: 767.98px) {
    #nav-toggle {
        width: 49px;
        /* top: 9px; */
        top: 20px;
        right: 0;
    }
    #nav-toggle .bar {
        width: 26px;
        height: 3px;
    }
    #nav-toggle .bar01 {
        top: 11px;
    }
    #nav-toggle .bar02 {
        top: 17px;
    }
    #nav-toggle .bar03 {
        top: 23px;
    }
}

#nav-toggle.open {
    background: transparent;
    border-radius: 0;
    border: none;
}
#nav-toggle.open .bar {
    width: 33px;
    background-color: #fff;
}
#nav-toggle.open .bar01 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
    left: 3px;
}
#nav-toggle.open .bar02 {
    width: 0%;
    opacity: 0;
}
#nav-toggle.open .bar03 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 32px;
    left: 3px;
}
@media (max-width: 767.98px) {
    #nav-toggle.open .bar {
        width: 26px;
    }
    #nav-toggle.open .bar01 {
        top: 11px;
    }
    #nav-toggle.open .bar03 {
        top: 29px;
    }
}

#nav-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: -1;
    background: rgba(0,0,0,1);
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
}
#nav-overlay.open {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

#nav-fullscreen {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: ease-in-out 0.25s;
    transition: ease-in-out 0.25s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    color: #fff;
}
#nav-fullscreen.open {
    visibility: visible;
    opacity: 1;
    -webkit-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
@media (max-width: 991.98px) {
    #nav-fullscreen {
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    #nav-fullscreen {
        left: 0;
        top: 0;
    }
}

#nav-fullscreen dl.nav-menu {
    margin: 0 auto;
    padding: 0;
    width: 80%;
    display: table;
    color: #fff;
}
#nav-fullscreen dl.nav-menu dt {
    width: 10%;
    display: table-cell;
    vertical-align: top;
    text-align: center;
    font-family: 'Saira Extra Condensed', sans-serif !important;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.3;
}
#nav-fullscreen dl.nav-menu dd {
    width: 90%;
    display: table-cell;
    vertical-align: middle;
    line-height: 1.8;
    box-sizing: border-box;
    padding-left: 40px;
    font-size: 20px;
}
#nav-fullscreen dl.nav-menu a {
    display: inline-block;
    padding: 0 5px;
    color: #fff;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#nav-fullscreen dl.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
  z-index: -1;
}
#nav-fullscreen dl.nav-menu a:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
#nav-fullscreen dl.nav-menu a:hover,
#nav-fullscreen dl.nav-menu a:focus,
#nav-fullscreen dl.nav-menu a:active {
  color: #000;
  text-decoration: none;
}
@media (max-width: 991.98px) {
    #nav-fullscreen dl.nav-menu dt {
        font-size: 45px;
    }
    #nav-fullscreen dl.nav-menu dd {
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    #nav-fullscreen dl.nav-menu {
        width: 90%;
    }
    #nav-fullscreen dl.nav-menu dt {
        font-size: 35px;
    }
    #nav-fullscreen dl.nav-menu dd {
        font-size: 14px;
        padding-left: 20px;
    }
}
@media (max-width: 380.98px) {
    #nav-fullscreen dl.nav-menu dd {
        font-size: 13px;
    }
}
@media (max-width: 320.98px) {
    #nav-fullscreen dl.nav-menu dt {
        font-size: 25px;
    }
    #nav-fullscreen dl.nav-menu dd {
        font-size: 12px;
        line-height: 1.6;
    }
}

#nav-fullscreen .btn-box {
    width: 100%;
}
#nav-fullscreen .btn-box .btn {
    margin: 60px auto 0;
    font-size: 52px;
    font-family: 'Saira Extra Condensed', sans-serif !important;
    border-width: 2px;
}
#nav-fullscreen ul.sns-list {
    margin: 40px auto 0;
}
#nav-fullscreen ul.sns-list li {
    margin: 0 10px;
}
#nav-fullscreen ul.sns-list li a {
    color: #fff;
}
#nav-fullscreen ul.sns-list li a:hover {
    color: #fff;
}
#nav-fullscreen .fa-instagram,
#nav-fullscreen .fa-pinterest,
#nav-fullscreen .fa-facebook-square,
#nav-fullscreen .fa-twitter,
#nav-fullscreen .fa-youtube,
#nav-fullscreen .icon-line {
    color: #fff !important;
    font-size: 30px;
}
#nav-fullscreen .icon-line {
    width: 30px;
    height: 29px;
    background: url(../image/icon-line-white.svg) center center no-repeat;
    background-size: 30px 29px;
}
@media (max-width: 991.98px) {
    #nav-fullscreen .btn-box .btn {
        margin-top: 40px;
        font-size: 45px;
    }
    #nav-fullscreen ul.sns-list {
        margin-top: 30px;
    }
    #nav-fullscreen .fa-instagram,
    #nav-fullscreen .fa-pinterest,
    #nav-fullscreen .fa-facebook-square,
    #nav-fullscreen .fa-twitter,
    #nav-fullscreen .fa-youtube,
    #nav-fullscreen .icon-line {
        font-size: 25px;
    }
    #nav-fullscreen .icon-line {
        width: 24px;
        height: 23px;
        background-size: 24px 23px;
    }
}
@media (max-width: 767.98px) {
    #nav-fullscreen .btn-box .btn {
        margin-top: 30px;
        font-size: 35px;
    }
    #nav-fullscreen ul.sns-list {
        margin-top: 20px;
    }
}
@media (max-width: 380.98px) {
    #nav-fullscreen .btn-box .btn {
        font-size: 30px;
    }
}
@media (max-width: 320.98px) {
    #nav-fullscreen .btn-box .btn {
        font-size: 25px;
    }
}

/* 2.1.2 sns Icon ------------*/
ul.sns-list {
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}
ul.sns-list li {
    text-align: center;
    margin: 0 8px;
}
ul.sns-list li a {
    display: block;
    color: #000;
}
ul.sns-list li a:hover {
    color: #000;
    text-decoration: none;
}
ul.sns-list li:hover {
    opacity: 0.5;
    transition: 0.7s;
}
@media (max-width: 767.98px) {
    ul.sns-list li {
        margin: 0 5px;
    }
}

.fa-instagram,
.fa-pinterest,
.fa-facebook-square,
.fa-twitter,
.fa-youtube,
.icon-line {
    display: block;
    background: inherit;
    color: #000 !important;
    font-size: 25px;
    margin: 0;
}
.icon-line {
    width: 24px;
    height: 23px;
    background: url(../image/icon-line.svg) center center no-repeat;
    background-size: 24px 23px;
}

/*-------------------------------
 * 3. MAIN VISUAL
 * ----------------------------*/
/*---------- swiper ----------*/
.swiper-wrapper {
    z-index: 0 !important;
}

.swiper-slide {
    box-sizing: border-box;
    position: relative;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}
.swiper-button-prev,
.swiper-button-next {
    top: 40%;
    transform: translateY(-40%);
    width: 20px;
    height: 36px;
    background-size: 20px 36px;
    z-index: 30;
}
.swiper-button-prev {
    background-image: url(../image/arrow-prev.svg) !important;
    left: 14.6%;
}
.swiper-button-next {
    background-image: url(../image/arrow-next.svg) !important;
    right: 14.6%;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    animation: btnFadeOver 2s ease-in-out infinite alternate;
    -webkit-animation: btnFadeOver 2s ease-in-out infinite alternate;
}
@media (max-width: 767.98px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

.swiper-pagination {
    top: 415px;
    margin-left: 29%;
    padding-right: 20px;
    height: 10px !important;
}
.swiper-pagination-bullet {
    opacity: 0.5;
    background: #fff;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}
@media (max-width: 991.98px) {
    .swiper-pagination {
        top: 370px;
        margin-left: auto;
    }
}
@media (max-width: 767.98px) {
    .swiper-pagination {
        top: 270px;
    }
}

/*-- TOP main --*/
.swiper-main {
    /*width: 100%;*/
    max-width: 1200px;
    height: auto;
    overflow: visible;
}
.swiper-main .slide-img {
    width: 100%;
    height: 450px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.swiper-main .sub {
    margin: 25px 0 10px;
    padding: 0 15px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
    word-break: break-word;
    opacity: 0;
    -webkit-animation: fadeOut-0 1s ease 0s 1 normal;
    animation: fadeOut-0 1s ease 0s 1 normal;
}
.swiper-main .txt {
    padding: 0 15px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em;
    font-size: 17px;
    text-align: center;
    word-break: break-word;
    opacity: 0;
    -webkit-animation: fadeOut-0 1s ease 0s 1 normal;
    animation: fadeOut-0 1s ease 0s 1 normal;
}
.swiper-main .swiper-slide-active .sub,
.swiper-main .swiper-slide-active .txt {
    opacity: 1;
    -webkit-animation: slideTextFade 1.75s ease 0s 1 normal;
    animation: slideTextFade 1.75s ease 0s 1 normal;
}
@media only screen and (min-width: 1500px) {
    .swiper-main {
        max-width: 1400px;
    }
}
@media (max-width: 991.98px) {
    .swiper-main .slide-img {
        height: 400px;
    }
}
@media (max-width: 767.98px) {
    .swiper-main .slide-img {
        height: 300px;
    }
    .swiper-main .sub {
        margin-top: 15px;
        font-size: 14px;
    }
    .swiper-main .txt {
        font-size: 13px;
        line-height: 1.6 !important;
    }
}

#main-visual {
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    z-index: 0;
}

/*-------------------------------
 * 4. CONTENT
 * ----------------------------*/
/* 4.1 Content
 * ------------------------------*/
/* 4.1.1 naka main ------------*/
#naka-main {
    padding-right: 40px;
}
#naka-main .sub {
    margin: 60px 0 5px;
    font-size: 26px;
    line-height: 1.6;
}
#naka-main .subsub {
    margin: 0;
    font-size: 16px;
}
#naka-main p {
    margin: 30px 0;
    font-size: 15px;
    font-family: 'Gothic Medium BBB', sans-serif !important;
}
#naka-main .txt {
    font-size: 16px !important;
}
@media (max-width: 991.98px) {
    #naka-main {
        padding-right: 30px;
    }
    #naka-main .sub {
        margin-top: 40px;
    }
}
@media (max-width: 767.98px) {
    #naka-main {
        padding-right: 15px;
    }
    #naka-main .sub {
        margin-top: 30px;
        font-size: 15px;
    }
    #naka-main .subsub {
        font-size: 14px;
    }
    #naka-main p {
        margin: 20px 0;
        font-size: 13px;
    }
    #naka-main .txt {
        font-size: 13px !important;
    }
}

/* 4.1.2 sidebar ------------*/
#sidebar .section-ttl {
    margin-bottom: 20px;
}
#sidebar p + .section-ttl,
#sidebar div + .section-ttl,
#sidebar ul + .section-ttl,
#sidebar dl + .section-ttl {
    margin-top: 60px;
}
#sidebar .section-ttl.sns {
    text-align: center;
    border-bottom: none;
    font-size: 43px;
}
@media (max-width: 767.98px) {
    #sidebar .section-ttl {
        margin-bottom: 15px;
    }
    #sidebar p + .section-ttl,
    #sidebar div + .section-ttl,
    #sidebar ul + .section-ttl,
    #sidebar dl + .section-ttl {
        margin-top: 40px;
    }
    #sidebar .section-ttl.sns {
        font-size: 34px;
    }
}

#sidebar ul.list li {
    margin-bottom: 17px;
    border-bottom: 1px solid #d5d5d5;
    position: relative;
}
#sidebar ul.list li a {
    padding: 14px 10px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: center;
}
#sidebar ul.list li .imagearea {
    width: 30%;
    height: 80px;
}
#sidebar ul.list li .txtarea {
    width: 70%;
    box-sizing: border-box;
    padding-left: 20px;
}
@media (max-width: 991.98px) {
    #sidebar ul.list li .imagearea {
        height: 60px;
    }
}
@media (max-width: 767.98px) {
    #sidebar ul.list li {
        margin-bottom: 15px;
    }
    #sidebar ul.list li a {
        padding: 10px 10px 0;
    }
    #sidebar ul.list li .imagearea {
        height: 80px;
    }
    #sidebar ul.list li .txtarea {
        padding-left: 15px;
    }
}

#sidebar ul.list li .day {
    font-size: 10px;
    line-height: 1;
}
#sidebar ul.list li .sub {
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0 0;
}
#sidebar ul.list li .txt {
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 10px;
}
#sidebar ul.list li .icon-num {
    width: 28px;
    height: 28px;
    padding-top: 5px;
    font-size: 17px;
}
#sidebar ul.list li .pr {
    display: block;
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    font-size: 26px;
    position: absolute;
    top: -8px;
    right: 0;
    margin: 0;
}
@media (max-width: 767.98px) {
	#sidebar ul.list li .pr {
        top: -2px;
        font-size: 18px;
    }
}

#sidebar .fa-instagram,
#sidebar .fa-pinterest,
#sidebar .fa-facebook-square,
#sidebar .fa-twitter,
#sidebar .fa-youtube,
#sidebar .icon-line {
    font-size: 28px;
}
#sidebar .icon-line {
    width: 30px;
    height: 29px;
    background-size: 30px 29px;
}
@media (max-width: 991.98px) {
    #sidebar .sns-list {
        margin-top: -10px;
    }
    #sidebar .sns-list li {
        margin: 0 5px;
    }
    #sidebar .fa-instagram,
    #sidebar .fa-pinterest,
    #sidebar .fa-facebook-square,
    #sidebar .fa-twitter,
    #sidebar .fa-youtube,
    #sidebar .icon-line {
        font-size: 25px;
    }
    #sidebar .icon-line {
        width: 24px;
        height: 23px;
        background-size: 24px 23px;
    }
}

/* 4.2 Cate Ttl
 * ------------------------------*/
.cate-ttl {
    margin: 0 0 65px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}
.cate-ttl .day {
    margin: 0;
}
.cate-ttl .sub {
    font-size: 26px;
    margin: 12px 0 10px;
}
.cate-ttl .txt {
    margin-top: -7px;
    font-size: 18px;
}
@media (max-width: 767.98px) {
    .cate-ttl {
        padding-bottom: 3px;
        margin-bottom: 28px;
        border-width: 1px;
    }
    .cate-ttl .sub {
        font-size: 16px;
    }
    .cate-ttl .txt {
        font-size: 14px;
        line-height: 1.6 !important;
    }
}

/* 4.3 Tag
 * ------------------------------*/
#tag-wrap {
    margin: 0.5rem 0 0;
}
#tag-wrap dl {
    width: 100%;
    display: table;
}
#tag-wrap dl dt {
    width: 10%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
#tag-wrap dl dt .sub {
    font-family: 'Saira Extra Condensed', sans-serif !important;
    font-weight: 600;
    font-size: 47px;
    line-height: 1.3;
}
#tag-wrap dl dt .subsub {
    font-size: 12px;
}
#tag-wrap dl dd {
    width: 90%;
    display: table-cell;
    vertical-align: middle;
    line-height: 2.2;
    border-left: 1px solid #d5d5d5;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 40px;
}
@media (max-width: 1199.98px) {
    #tag-wrap dl dt {
        width: 15%;
    }
    #tag-wrap dl dd {
        width: 85%;
        padding-right: 30px;
    }
}
@media (max-width: 767.98px) {
    #tag-wrap {
        margin: 0 0 -1rem;
    }
    #tag-wrap dl {
        display: block;
    }
    #tag-wrap dl dt {
        display: block;
        width: 100%;
        vertical-align: top;
    }
    #tag-wrap dl dt .sub {
        display: inline-block;
        font-size: 34px;
    }
    #tag-wrap dl dt .subsub {
        display: inline-block;
        font-size: 11px;
        margin-left: 10px;
        vertical-align: 34%;
    }
    #tag-wrap dl dd {
        display: block;
        width: 100%;
        line-height: 1.8;
        padding: 5px 0 0;
        border-left: none;
        vertical-align: top;
    }
}

/* 4.4 Icon Number
 * ------------------------------*/
.icon-num {
    display: block;
    width: 32px;
    height: 32px;
    padding-top: 6px;
    position: absolute;
    margin: 0;
    top: -1px;
    left: -1px;
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    background: #000;
    z-index: 100;
}
@media (max-width: 767.98px) {
    .icon-num {
        width: 28px;
        height: 28px;
        padding-top: 5px;
        font-size: 17px;
        top: 0;
        left: 0;
    }
}

/* 4.5 Img List
 * ------------------------------*/
.img-list .col {
    padding: 15px 18px;
    border: 1px solid #fff;
    margin-bottom: 20px;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    box-sizing: border-box;
}
.img-list.ranking .col {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.img-list.search-result .col {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.img-list .col a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.img-list .col a:hover {
    text-decoration: none;
}
.img-list .col:hover {
    border-color: #d5d5d5;
    transition: 0.7s;
}
.img-list .col .txtarea {
    position: relative;
}
.img-list .sub {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.8;
}
.img-list.ranking .sub
.img-list.search-result .sub {
    font-size: 13px;
    margin: 8px 0;
}
.img-list .day {
    margin: 16px 0 10px;
    font-size: 13px;
}
.img-list.ranking .day,
.img-list.search-result .day {
    margin: 0;
    font-size: 12px;
}
.img-list .txt {
    font-size: 12px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em;
    word-break: break-word;
    margin: 8px 0;
    line-height: 1.6;
}
.img-list .txt-tag {
    color: #7e7e7e;
    margin: 20px 0 0;
}
.img-list .txt-tag a {
    color: #7e7e7e;
}
.img-list.ranking .txt-tag,
.img-list.search-result .txt-tag {
    margin-top: 8px;
}
.img-list .pr {
    display: block;
    font-family: 'Roboto Condensed', sans-serif  !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    font-size: 26px;
    position: absolute;
    top: -10px;
    right: 0;
    margin: 0;
}
.img-list.ranking .pr,
.img-list.search-result .pr {
    top: -15px;
}
@media (max-width: 767.98px) {
    .img-list .col {
        padding: 10px;
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width:  50%;
         margin-bottom: 15px;
    }
    .img-list .sub {
        margin: 8px 0;
        font-size: 13px;
        line-height: 1.6;
    }
    .img-list .day {
        margin: 13px 0 8px;
        font-size: 11px;
    }
    .img-list .txt {
        line-height: 1.6 !important;
    }
    .img-list .txt-tag {
        margin-top: 12px;
        font-size: 12px;
    }
    .img-list .pr {
        top: -8px;
        font-size: 18px;
    }
    .img-list.ranking .col,
    .img-list.search-result .col {
        padding-bottom: 5px;
         -ms-flex: 0 0 100%;
         flex: 0 0 100%;
         max-width:  100%;
         border-bottom: 1px solid #d5d5d5;
    }
    .img-list.ranking.icon-num-none .col {
        padding: 7px 0;
    }
    .img-list.ranking .col a,
    .img-list.search-result .col a {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: center;
    }
    .img-list.ranking .col .imagearea,
    .img-list.search-result .col .imagearea {
        width: 30%;
        height: 80px;
    }
    .img-list.ranking .col .txtarea,
    .img-list.search-result .col .txtarea {
        width: 70%;
        box-sizing: border-box;
        padding-left: 15px;
    }
    .img-list.ranking .col:hover,
    .img-list.search-result .col:hover {
        border-color: #fff;
        border-bottom-color: #d5d5d5;
        transition: none;
    }
    .img-list.ranking .col a:hover,
    .img-list.search-result .col a:hover {
        text-decoration: underline;
    }
    .img-list.ranking .day,
    .img-list.search-result .day {
        margin: 0;
        font-size: 10px;
        line-height: 1;
    }
    .img-list.ranking .sub,
    .img-list.search-result sub {
        margin: 10px 0 0;
        font-size: 13px;
        line-height: 1.5;
    }
    .img-list.ranking .txt,
    .img-list.search-result .txt {
        width: 100%;
        margin-top: 0;
    }
    .img-list.ranking .txt-tag,
    .img-list.search-result .txt-tag {
        display: none;
    }
    .img-list.ranking .pr,
    .img-list.search-result .pr {
        top: -8px;
    }
}

.img-list.ranking .imagearea {
    height: 200px;
    margin-bottom: 20px;
}
.img-list.search-result .imagearea {
    height: 230px;
    margin-bottom: 20px;
}
@media (min-width: 1500px) {
    .img-list.ranking .imagearea {
        height: 250px;
    }
    .img-list.search-result .imagearea {
        height: 280px;
    }
}
@media (max-width: 1199.98px) {
    .img-list.ranking .imagearea {
        height: 150px;
    }
    .img-list.search-result .imagearea {
        height: 180px;
    }
}
@media (max-width: 991.98px) {
    .img-list.ranking .imagearea {
        height: 110px;
    }
    .img-list.search-result .imagearea {
        height: 140px;
    }
}
@media (max-width: 767.98px) {
    .img-list.ranking .imagearea,
    .img-list.search-result .imagearea {
        height: auto;
        margin-bottom: 13px;
    }
}

/* 4.6 Recommend
 * ------------------------------*/
.recommend-wrap {
    margin-top: 0;
}
.recommend-wrap .d-flex {
    align-items: center;
}
.recommend-wrap .waku-box {
    border: 1px solid #d5d5d5;
}
.recommend-wrap .txt-box {
    padding: 20px 40px 20px 0;
}
.recommend-wrap .sub {
    font-size: 26px;
    line-height: 1.6;
    margin: 0 0 5px;
}
.recommend-wrap .price {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 20px;
}
.recommend-wrap .txt {
    font-size: 13px;
}
@media (max-width: 1199.98px) {
    .recommend-wrap .txt-box {
        padding: 20px 20px 20px 0;
    }
    .recommend-wrap .sub,
    .recommend-wrap .price {
        font-size: 22px;
    }
}
@media (max-width: 991.98px) {
    .recommend-wrap .sub,
    .recommend-wrap .price {
        font-size: 18px;
    }
}
@media (max-width: 767.98px) {
    .recommend-wrap {
        margin-top: 50px;
    }
    .recommend-wrap .txt-box {
        padding: 15px;
    }
    .recommend-wrap .sub {
        font-size: 15px;
    }
    .recommend-wrap .price {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

.recommend-wrap .main-img {
    float: left;
}
.recommend-wrap .main-img li {
    width: 470px;
    height: 350px;
    overflow: hidden;
}
@media (min-width: 1300px) {
    .recommend-wrap .main-img li {
        width: 500px;
        height: 372px;
    }
}
@media (min-width: 1500px) {
    .recommend-wrap .main-img li {
        width: 600px;
        height: 447px;
    }
}
@media (max-width: 1240px) {
    .recommend-wrap .main-img li {
        width: 450px;
        height: 335px;
    }
}
@media (max-width: 1199.98px) {
    .recommend-wrap .main-img li {
        width: 380px;
        height: 283px;
    }
}
@media (max-width: 991.98px) {
    .recommend-wrap .main-img li {
        width: 270px;
        height: 201px;
    }
}
@media (max-width: 767.98px) {
    .recommend-wrap .main-img {
        float: none;
    }
    .recommend-wrap .main-img li {
        width: 100%;
        height: 250px;
    }
}

.recommend-wrap .main-img li.item2,
.recommend-wrap .main-img li.item3,
.recommend-wrap .main-img li.item4,
.recommend-wrap .main-img li.item5 {
  display: none;
}
.recommend-wrap .thumb-img {
	float: right;
	display: block;
	width: 90px;
	padding-left: 10px;
}
.recommend-wrap .thumb-img li {
  display: block;
  width: 55px;
  height: 55px;
  overflow: hidden;
  cursor: pointer;
  margin: 15px 0;
}
.recommend-wrap .thumb-img li img {
  width: 55px;
  height: 55px;
  object-fit: cover;
}
.recommend-wrap .thumb-img li:hover img {
  opacity: 0.8;
  transition: 0.7s;
}
@media (max-width: 1199.98px) {
    .recommend-wrap .thumb-img {
        width: 70px;
    }
}
@media (max-width: 767.98px) {
    .recommend-wrap .thumb-img {
        width: 100%;
        float: none;
        padding-left: 7px;
        padding-right: 7px;
    }
    .recommend-wrap .thumb-img li {
        display: inline-block;
        width: 40px;
        height: 40px;
        margin: 10px 3px;
    }
    .recommend-wrap .thumb-img li img {
        width: 40px;
        height: 40px;
    }
}

/* 4.7 Search
 * ------------------------------*/
#search-wrap {
    margin-top: 1rem;
}
#search-wrap .sub-search {
    margin: 0 0 30px;
    font-size: 26px;
    line-height: 1.5;
    text-align: center;
    word-break: break-word;
}
#search-wrap .sub-search.txt-tag {
    font-weight: 700 !important;
    font-size: 28px;
    letter-spacing: 0;
}
#search-wrap .sub-search i {
    font-size: 24px;
    display: inline-block;
    margin-right: 15px;
}
@media (max-width: 767.98px) {
    #search-wrap .sub-search {
        font-size: 18px;
    }
    #search-wrap .sub-search.txt-tag {
        font-size: 22px;
    }
    #search-wrap .sub-search i {
        font-size: 20px;
        vertical-align: -10%;
    }
    #search-wrap .sub-search.txt-tag i {
        vertical-align: 0%;
    }
}

/* 4.8 Contact
 * ------------------------------*/
#contact-wrap {
    margin-top: 1rem;
    font-family: 'Gothic Medium BBB', sans-serif !important;
}
#contact-wrap .section-ttl {
    text-align: center;
    border-bottom: none;
    font-size: 50px;
}
#contact-wrap dl.dl-list:first-of-type {
    border-top: 1px solid #000;
}
@media (max-width: 767.98px) {
    #contact-wrap .section-ttl {
        font-size: 30px;
    }
}

#contact-wrap input::-webkit-input-placeholder {
    color: #d5d5d5;
    font-weight: 400;
    font-size: 14px;
}
#contact-wrap input:-moz-placeholder {
    color: #d5d5d5;
    font-weight: 400;
    font-size: 14px;
}
#contact-wrap input::-moz-placeholder {
    color: #d5d5d5;
    font-weight: 400;
    font-size: 14px;
}
#contact-wrap input:-ms-input-placeholder {
    color: #d5d5d5;
    font-weight: 400;
    font-size: 14px;
}

#contact-wrap form {
    margin-top: 10px;
}
#contact-wrap form .hissu {
	display: inline-block;
	height: 16px;
	line-height: 16px;
	margin-left: 10px;
	padding: 0 8px;
	background: #c30;
	color: #fff;
	font-size: 10px;
	vertical-align: 10%;
	border-radius: 10px;
}
#contact-wrap form input,
#contact-wrap form textarea,
#contact-wrap form select {
	background: #fff;
	padding: 2px 10px;
	font-size: 14px;
	color: #000;
	border: 1px solid #9e9e9f;
}
#contact-wrap form .formTbox {
	width: 80%;
}
#contact-wrap form .formTbox-m {
	width: 60%;
}
#contact-wrap form .formTbox-s {
	width: 30%;
}
#contact-wrap form .formTarea {
	width: 80%;
	height: 100px;
}
#contact-wrap form label {
	font-weight: 400;
}
#contact-wrap form input::-webkit-input-placeholder {
    color: #ccc;
    font-weight: 400;
}
#contact-wrap form input:-ms-input-placeholder {
    color: #ccc;
    font-weight: 400;
}
#contact-wrap form input::-moz-placeholder {
    color: #ccc;
    font-weight: 400;
}
#contact-wrap input[type=radio],
#contact-wrap input[type=checkbox] {
	margin-right: 5px;
}
@media (max-width: 991.98px) {
    #contact-wrap form .formTbox-s {
	    width: 50%;
	}
}
@media (max-width: 767.98px) {
	#contact-wrap form input,
	#contact-wrap form textarea,
	#contact-wrap form select {
		font-size: 12px;
		padding: 5px 10px;
	}
	#contact-wrap form .formTbox {
	    width: 98%;
	}
	#contact-wrap form .formTbox-sp {
		width: 80%;
	}
	#contact-wrap form .formTarea {
	    width: 98%;
	}
	#contact-wrap form .hissu {
	    margin-left: 7px;
	    vertical-align: 5%;
	}
}

/*Chrome、Safari*/
#contact-wrap input[type="number"]::-webkit-outer-spin-button,
#contact-wrap input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*Firefox、IE*/
#contact-wrap input[type="number"] {
    -moz-appearance:textfield;
}

/*--------- btn-submit / btn-error --------- */
#contact-wrap .btn-submit,
#contact-wrap .btn-error {
    width: 240px;
	margin: 40px auto 20px;
	line-height: 1;
    padding: 15px 10px 16px;
	font-size: 20px;
	cursor: pointer;
	transition: .7s;
	text-align: center;
	line-height: 1;
	border-radius: 0;
	border: none;
	box-sizing: border-box;
	font-weight: 600;
	font-family: 'Midashi Go MB31', sans-serif !important;
}
#contact-wrap .btn-submit {
    background: #000;
    color: #fff;
}
#contact-wrap .btn-error {
    background: #dddddd;
    color: #000;
}
#contact-wrap .btn-submit:hover {
	background: #333;
}
#contact-wrap .btn-error:hover {
	background: #ccc;
}
@media (max-width: 767.98px) {
    #contact-wrap .btn-submit,
    #contact-wrap .btn-error {
        width: 200px;
	    margin: 30px auto;
	    padding: 12px 10px;
	    font-size: 15px;
	}
	#contact-wrap .btn-error {
	    margin-top: 0;
	}
}

/*-------------------------------
 * 5. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 0 24px;
}
footer .inner {
    padding: 60px 0 40px;
    border-top: 1px solid #d5d5d5;
}
footer .logo {
    width: 285px;
}
footer .logo img {
    display: block;
    width: 285px;
    height: auto;
}
footer .logo a {
    display: block;
}
footer .logo a:hover {
    opacity: 0.6;
    transition: 0.7s;
}
footer .copy {
    font-size: 11px;
    text-align: center;
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
}
footer ul.sns-list {
    margin: 40px 0 30px;
}
@media (max-width: 991.98px) {
    footer .inner {
        padding: 50px 0 20px;
    }
    footer .logo {
        width: 250px;
    }
    footer .logo img {
        width: 250px;
        height: auto;
    }
    footer ul.sns-list {
        margin: 30px 0 20px;
    }
}
@media (max-width: 767.98px) {
    footer .inner {
        padding: 0 0 10px;
        border: none;
    }
    footer .logo {
        width: 200px;
    }
    footer .logo img {
        width: 200px;
        height: auto;
    }
    footer .copy {
        font-size: 10px;
    }
}

/*-------------------------------
 * 6. PAGER
 * ----------------------------*/
.pager_list {
    margin: 60px auto 0;
    padding: 0;
    text-align: center;
}
.pager_list li {
    list-style: none;
    display: inline-block;
    line-height: 1;
    margin: 0 1px;
}
.pager_list li a {
    display: block;
    padding: 8px 12px;
    color: #000;
    background-color: #fff;
    font-size: 14px;
    overflow: hidden;
    transition: background-color 300ms, color 300ms;
    border: 1px solid #bebebe;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
}
.pager_list li a:hover,
.pager_list li.here,
.pager_list li.here a {
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
    text-decoration: none;
}
.pager_list li.next a {
    border: none;
    background-color: transparent;
    text-decoration: none;
    font-weight: 300;
}
.pager_list li.next a:hover {
    text-decoration: underline;
    color: #000;
}
@media (max-width: 767.98px) {
    .pager_list {
        margin-top: 20px;
    }
    .pager_list li a {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/*-------------------------------
 * 7. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.75;
  transition: 0.7s;
}

a:hover .imagearea-content > img {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.imagearea {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
}
.imagearea:before {
    content: "";
    display: block;
    padding-top: 66.667%;
}

.imagearea-content {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: flex-start;
}

.imagearea-content > img {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
    overflow: hidden !important;
}

.imagearea-content .txt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: rgba(0,169,157,0.65);
    transition: opacity 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
    color: #fff;
}
a .imagearea-content.txt-none .txt-overlay {
    opacity: 0;
}
a:hover .imagearea-content.txt-none .txt-overlay {
    opacity: 1;
}
.imagearea-content .txt-overlay {
    color: #fff;
    text-align: center;
}
.imagearea-content .txt-overlay .more {
    margin: 0;
    display: block;
    font-size: 13px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.imagearea-content span {
    display: block;
    width: 100%;
}
.imagearea-content span i {
    display: inline-block;
    margin-left: 10px;
    vertical-align: 5%;
    font-size: 12px;
}
@media (max-width: 991.98px) {
    .imagearea-content .txt-overlay .more {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    .imagearea-content .txt-overlay .more {
        font-size: 11px;
    }
}

/*--------- keyframes --------- */
@-webkit-keyframes slideTextFade {
    0%, 25% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideTextFade {
    0%, 25% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

@-webkit-keyframes fadeOut-0 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut-0 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


/*-------------------------------
 * 8. 200828 詳細ページ追加
 * ----------------------------*/
#naka-main .txt-tag + .wp-block-image {
    margin: 6rem 0 0 !important;
}
@media (max-width: 767.98px) {
    #naka-main .txt-tag + .wp-block-image {
        margin-top: 4rem !important;
    }
}

#naka-main .wp-block-quote {
    margin: 60px 0 30px !important;
    font-size: 15px !important;
    font-family: 'Gothic Medium BBB', sans-serif !important;
}
#naka-main .has-large-font-size {
    font-size: 26px !important;
    line-height: 1.6 !important;
    font-weight: 600 !important;
    font-family: 'Midashi Go MB31', sans-serif !important;
    margin: 0 0 20px !important;
}
#naka-main .has-large-font-size + p {
    margin-top: 20px !important;
}
@media (max-width: 767.98px) {
    #naka-main .wp-block-quote {
        margin: 30px 0 25px !important;
        font-size: 14px !important;
    }
    #naka-main .has-large-font-size {
        font-size: 15px !important;
        margin: 20px 0 15px !important;
    }
    #naka-main .has-large-font-size + p {
        margin-top: 10px !important;
    }
}

#naka-main .wp-block-columns {
    margin-bottom: 0 !important;
    margin-top: 20px !important;
}
#naka-main .wp-block-columns p {
    margin-top: 0 !important;
}
#naka-main .wp-block-media-text {
    display: -ms-flex !important;
    display: flex !important;
    flex-flow: row wrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    align-content: flex-start !important;
    -ms-grid-columns: none !important;
    grid-template-columns: none !important;
}
#naka-main .wp-block-media-text__media {
    width: 50% !important;
}
#naka-main .wp-block-media-text__content {
    width: 50% !important;
    padding: 0 40px !important;
}
@media (max-width: 767.98px) {
    #naka-main .wp-block-columns {
        margin-top: 0 !important;
    }
    #naka-main .wp-block-media-text__media {
        width: 100% !important;
    }
    #naka-main .wp-block-media-text__content {
        width: 100% !important;
        padding: 0 !important;
    }
}

#naka-main .wp-block-table {
    margin-top: 20px !important;
    font-weight: 400 !important;
    font-family: 'Gothic Medium BBB', sans-serif !important;
}
#naka-main .wp-block-table strong {
    font-family: 'Midashi Go MB31', sans-serif !important;
    font-weight: 600 !important;
}
#naka-main .wp-block-table figcaption {
    display: block !important;
    margin-top: 10px !important;
}

#naka-main .blocks-gallery-grid {
    list-style-type: none !important;
}
#naka-main .blocks-gallery-grid .blocks-gallery-image,
#naka-main .blocks-gallery-grid .blocks-gallery-item,
#naka-main .wp-block-gallery .blocks-gallery-image,
#naka-main .wp-block-gallery .blocks-gallery-item {
    margin: 0 8px 15px 8px !important;
}
_::-webkit-full-page-media, _:future, :root #naka-main .blocks-gallery-grid .blocks-gallery-image figure,
_::-webkit-full-page-media, _:future, :root #naka-main .blocks-gallery-grid .blocks-gallery-item figure,
_::-webkit-full-page-media, _:future, :root #naka-main .wp-block-gallery .blocks-gallery-image figure,
_::-webkit-full-page-media, _:future, :root #naka-main .wp-block-gallery .blocks-gallery-item figure  {
    height: auto !important;
}
@media (max-width: 767.98px) {
    #naka-main .blocks-gallery-grid .blocks-gallery-image,
    #naka-main .blocks-gallery-grid .blocks-gallery-item,
    #naka-main .wp-block-gallery .blocks-gallery-image,
    #naka-main .wp-block-gallery .blocks-gallery-item {
        margin: 0 5px 10px 5px !important;
    }
}

#naka-main .wp-block-buttons .wp-block-button {
    display: block !important;
    margin: 0 auto !important;
}
#naka-main .wp-block-button__link {
    display: block !important;
    width: 100% !important;
    max-width: 240px !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    padding: 15px 10px !important;
    box-sizing: border-box !important;
    position: relative !important;
    border: 1px solid #000 !important;
    color: #000 !important;
    background: inherit !important;
    font-weight: 600 !important;
    outline: none !important;
    transition: all .3s !important;
    cursor: pointer !important;
    overflow: hidden !important;
    z-index: 1 !important;
    text-decoration: none !important;
}
#naka-main .wp-block-button__link::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  background: #000 !important;
  -webkit-transition: 0.5s ease-in-out !important;
  transition: 0.5s ease-in-out !important;
  -webkit-transform: translateX(110%) !important;
  transform: translateX(110%) !important;
  z-index: -1 !important;
}
#naka-main .wp-block-button__link:hover::before {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}
#naka-main .wp-block-button__link:hover,
#naka-main .wp-block-button__link:focus,
#naka-main .wp-block-button__link:active {
  color: #fff !important;
  text-decoration: none !important;
}
#naka-main .wp-block-button__link:focus {
    outline: none !important;
    overflow: hidden !important;
    text-decoration: none !important;
}
@media (max-width: 767.98px) {
    #naka-main .wp-block-button__link {
        font-size: 15px !important;
        max-width: 200px !important;
        padding: 12px 10px !important;
    }
}

#naka-main h2 {
    font-size: 26px;
    line-height: 1.5;
}
#naka-main h3 {
    font-size: 16px;
    line-height: 1.5;
}
#naka-main .sub.title-top {
    margin-top: 0;
}
#naka-main .subsub {
    margin-bottom: 10px;
}
#naka-main ul {
    list-style: disc;
    margin: 30px 0;
}
#naka-main ul li {
    line-height: 1.9;
    font-family: 'Gothic Medium BBB', sans-serif !important;
    font-weight: 400 !important;
    margin: 0 0 0 25px;
}
#naka-main ol {
    padding: 0;
    margin: 30px 0;
}
#naka-main ol li {
    line-height: 1.9;
    font-family: 'Gothic Medium BBB', sans-serif !important;
    font-weight: 400 !important;
    margin: 0 0 0 25px;
}
@media (max-width: 767.98px) {
    #naka-main h2 {
        font-size: 15px;
    }
    #naka-main h3 {
        font-size: 14px;
    }
    #naka-main ul,
    #naka-main ol {
        margin: 20px 0;
    }
    #naka-main ul li {
        line-height: 1.8;
        margin-left: 20px;
    }
    #naka-main ol li {
        line-height: 1.8;
    }
}

#naka-main img {
  max-width: 100% !important;
  height: auto !important;
}

#naka-main strong {
    font-family: 'Midashi Go MB31', sans-serif !important;
    font-weight: 600 !important;
}

#naka-main a {
    text-decoration: underline;
}
#naka-main a:hover {
    text-decoration: none;
}

#naka-main .txt-tag {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    word-break: break-word !important;
}

#naka-main .wp-block-embed__wrapper {
    position:relative;
    width:100%;
    padding-top:56.25%;
}
#naka-main .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.recommend-wrap {
    margin-top: 4rem;
}
#sidebar {
    margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
    .recommend-wrap {
        margin-top: 50px;
    }
    #sidebar {
        margin-top: 3rem;
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    main.p-3 {
        padding: 0 !important;
    }
}

/*-------------------------------
 * 9. 200908 詳細ページTAG追加
 * ----------------------------*/
.day-tag-box {
    margin: 23px 0 12px;
    color: #7e7e7e;
}
.day-tag-box a,
.day-tag-box a:hover {
    color: #7e7e7e;
}
.day-tag-box .day {
    display: inline-block;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
}
.day-tag-box .day::before {
    padding: 0 25px;
    content: "/";
}
.day-tag-box .tag {
    display: inline-block;
}
@media (max-width: 767.98px) {
    .day-tag-box {
        margin: 15px 0 8px;
    }
    .day-tag-box .day::before {
        padding: 0 10px;
    }
}

/*-------------------------------
 * 10. 200924 商品一覧ページ追加(shopping)
 * ----------------------------*/
.btn-buy {
    display: block;
    width: 100%;
	margin: 20px auto 0;
	padding: 13px 10px 14px;
	font-weight: 600;
	font-family: 'Midashi Go MB31', sans-serif !important;
	background: #000;
	color: #fff;
	border-radius: 6px;
	font-size: 15px;
	line-height: 1;
	box-sizing: border-box;
    position: relative;
    outline: none;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}
.btn-buy.size-fixed {
    margin-top: 30px;
    max-width: 300px;
}
.btn-buy:hover {
    color: #fff;
	background: #333;
	text-decoration: none;
}
.btn-buy:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
@media (max-width: 767.98px) {
    .btn-buy {
        margin-top: 15px;
        font-size: 13px;
        padding: 11px 10px;
    }
    .btn-buy.size-fixed {
        margin-top: 20px;
        max-width: 100%;
    }
}


#shopping-wrap {
    margin-top: 1rem;
}

#shopping-wrap .section-ttl {
    text-align: center;
    border-bottom: none;
    font-size: 50px;
}
@media (max-width: 767.98px) {
    #shopping-wrap .section-ttl {
        font-size: 30px;
    }
}

.txt-price {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em;
    font-size: 16px;
    text-align: left;
    margin-left: 4px;
}
.txt-price .txt-tag {
    display: inline-block !important;
    font-size: 13px !important;
    vertical-align: 4% !important;
    font-weight: 300 !important;
    margin: 0 0 0 10px !important;
    color: #7e7e7e !important;
}
@media (max-width: 991.98px) {
    .txt-price .txt-tag {
        display: block !important;
        margin-left: 0 !important;
    }
}
@media (max-width: 767.98px) {
    .txt-price {
        font-size: 15px;
        margin-bottom: 11px;
    }
    .txt-price .txt-tag {
        font-size: 12px !important;
    }
}

.img-list.shopping .col {
    margin-bottom: 20px;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-bottom: 0;
}
.img-list.shopping .sub {
    font-size: 14px;
    margin: 0;
}
.img-list.shopping .txt-tag {
    display: block;
    margin: 2px 0 8px 3px;
    line-height: 1.5;
    color: #7e7e7e;
}
@media (max-width: 767.98px) {
    .img-list.shopping {
        margin-left: -8px;
        margin-right: -8px;
    }
    .img-list.shopping .col {
        padding-left: 8px;
        padding-right: 8px;
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width:  50%;
         margin-bottom: 15px;
    }
    .img-list.shopping .sub {
        font-size: 13px;
    }
    .img-list.shopping .txt-tag {
        margin-top: 5px;
        line-height: 1.5 !important;
    }
}

.img-list.shopping .imagearea {
    height: 230px;
    margin-bottom: 20px;
}
@media (min-width: 1500px) {
    .img-list.shopping .imagearea {
        height: 280px;
    }
}
@media (max-width: 1199.98px) {
    .img-list.shopping .imagearea {
        height: 180px;
    }
}
@media (max-width: 991.98px) {
    .img-list.shopping .imagearea {
        height: 140px;
    }
}
@media (max-width: 767.98px) {
    .img-list.shopping .imagearea {
        height: auto;
        margin-bottom: 13px;
    }
}

.img-list.shopping table,
.recommend-wrap .txt-box table {
    width: 100% !important;
    border-collapse: collapse !important;
	border-spacing: 0 !important;
	margin: -20px auto 15px !important;
	border: none !important;
}
.recommend-wrap .txt-box table {
    margin-top: 0 !important;
}
.img-list.shopping table th,
.recommend-wrap .txt-box table th {
    width: 50% !important;
	padding: 0 10px 0 0 !important;
	border: none !important;
	background: none !important;
	text-align: right!important;
}
.img-list.shopping table td,
.recommend-wrap .txt-box table td {
    width: 50% !important;
	padding: 0 0 0 10px !important;
	border: none !important;
	text-align: left !important;
}
.img-list.shopping input[type=submit],
.recommend-wrap .txt-box input[type=submit] {
    width: 100% !important;
    height: auto !important;
    padding: 10px !important;
    border-radius: 6px !important;
    font-family: 'Midashi Go MB31', sans-serif !important;
    font-size: 15px !important;
    background: #000 !important;
    border: none !important;
    box-shadow : none !important;
}
.recommend-wrap .txt-box input[type=submit] {
    max-width: 70% !important;
    margin-bottom: -10px !important;
}
.img-list.shopping input[type=submit]:hover,
.recommend-wrap .txt-box input[type=submit]:hover {
    background: #555 !important;
    transition: 0.7s !important;
}
@media (max-width: 991.98px) {
    .img-list.shopping table,
    .recommend-wrap .txt-box table {
        margin-top: 0 !important;
        border: none !important;
    }
    .recommend-wrap .txt-box input[type=submit] {
        max-width: 80% !important;
    }
}
@media (max-width: 767.98px) {
    .img-list.shopping table,
    .recommend-wrap .txt-box table {
        margin-top: 10px !important;
        border: none !important;
    }
    .img-list.shopping table td input {
        width: 100% !important;
    }
    .recommend-wrap .txt-box table td input {
        width: 50% !important;
    }
    .img-list.shopping input[type=submit],
    .recommend-wrap .txt-box input[type=submit] {
        font-size: 13px !important;
    }
}

/*---------- 詳細 ----------*/
.recommend-wrap {
    margin-top: 0 !important;
}
.recommend-wrap .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
.recommend-wrap .row {
    margin: 0;
}
.recommend-wrap .col-12 {
    padding-left: 0;
    padding-right: 0;
}
.recommend-wrap .txt-tag {
    color: #7e7e7e;
}
.recommend-wrap .sub-box {
    padding: 25px 20px 0 25px !important;
}
.recommend-wrap .sub-box .sub {
    font-size: 22px !important;
    margin: 0 !important;
}
.recommend-wrap .sub-box .sub-en {
    font-size: 15px !important;
}
.recommend-wrap .sub-box .price {
    font-size: 22px !important;
    margin: 15px 0 !important;
    font-weight: 500 !important;
    font-family: 'Roboto', sans-serif !important;
}
.recommend-wrap .sub-box .price .txt-tag {
    display: block;
    margin-top: -5px !important;
    font-size: 15px !important;
}
.recommend-wrap .txt-box {
    padding: 10px 20px 20px;
}
.recommend-wrap .txt-box p {
    margin: 15px 0 0 !important;
    font-size: 15px !important;
}
@media (min-width: 1800px) {
    .recommend-wrap .sub-box {
        padding: 35px 40px 0 45px !important;
    }
    .recommend-wrap .sub-box .sub {
        font-size: 30px !important;
    }
    .recommend-wrap .sub-box .price {
        font-size: 30px !important;
        margin: 30px 0 !important;
    }
    .recommend-wrap .sub-box .sub-en,
    .recommend-wrap .sub-box .price .txt-tag {
        font-size: 20px !important;
    }
    .recommend-wrap .txt-box {
        padding: 10px 40px 40px;
    }
    .recommend-wrap .txt-box p {
        font-size: 16px !important;
        margin-top: 25px !important;
    }
}
@media (max-width: 1199.98px) {
    .recommend-wrap .sub-box {
        padding: 20px 20px 0 20px !important;
    }
    .recommend-wrap .sub-box .sub,
    .recommend-wrap .sub-box .price {
        font-size: 20px !important;
    }
    .recommend-wrap .txt-box {
        padding: 20px;
    }
    .recommend-wrap .txt-box p {
        margin: 0 0 15px !important;
    }
}
@media (max-width: 991.98px) {
    .recommend-wrap .sub-box .sub,
    .recommend-wrap .sub-box .price {
        font-size: 18px !important;
    }
}
@media (max-width: 767.98px) {
     .recommend-wrap .sub-box {
        padding: 20px 15px 0 15px !important;
    }
    .recommend-wrap .sub-box .sub,
    .recommend-wrap .sub-box .price {
        font-size: 15px !important;
    }
    .recommend-wrap .sub-box .sub-en {
        font-size: 14px !important;
    }
    .recommend-wrap .txt-box p {
        font-size: 13px !important;
    }
    .recommend-wrap .txt.txt-tag {
        font-size: 12px !important;
    }
    .recommend-wrap .txt-box {
        padding: 0 15px 15px;
    }
}

/*-------------------------------
 * 11. 201006 main-nav追加
 * ----------------------------*/
#nav-fullscreen .btn-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 70px auto 10px;
}
#nav-fullscreen .btn-box a {
    display: inline-block;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    padding: 7px 20px 6px;
    margin: 0 20px;
    line-height: 1;
    font-family: 'Saira Extra Condensed', sans-serif !important;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#nav-fullscreen .btn-box a::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
  z-index: -1;
}
#nav-fullscreen .btn-box a:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
#nav-fullscreen .btn-box a:hover,
#nav-fullscreen .btn-box a:focus,
#nav-fullscreen .btn-box a:active {
  color: #000;
  text-decoration: none;
}
#nav-fullscreen .btn-box a span {
    display: block;
    width: 5px;
    height: 29px;
    background: #fff;
    position: absolute;
    top: 49%;
    left: 0;
    transform: translateY(-49%);
    margin: 0;
}
@media (max-width: 991.98px) {
    #nav-fullscreen .btn-box {
        margin-top: 50px;
    }
}
@media (max-width: 767.98px) {
    #nav-fullscreen .btn-box {
        margin-top: 40px;
    }
    #nav-fullscreen .btn-box a {
        font-size: 25px;
        padding: 3px 13px;
        margin: 0 5px;
    }
    #nav-fullscreen .btn-box a span {
        width: 3px;
        height: 18px;
    }
}
@media (max-width: 320.98px) {
    #nav-fullscreen .btn-box a {
        font-size: 20px;
    }
    #nav-fullscreen .btn-box a span {
        width: 3px;
        height: 16px;
        top: 51%;
        transform: translateY(-51%);
    }
}

/*-------------------------------
 * 12. 201006 company追加
 * ----------------------------*/
.company-wrap dl.dl-list dt,
.company-wrap dl.dl-list dd {
    font-size: 15px;
    line-height: 1.8;
}
.company-wrap .txt-tag {
    display: block;
    color: #7e7e7e;
    font-size: 14px;
}
.company-wrap .txt-tag a {
    color: #7e7e7e;
}
@media (max-width: 767.98px) {
    .company-wrap dl.dl-list dt {
        padding: 13px 0 5px;
        font-size: 14px;
        line-height: 1.7;
    }
    .company-wrap dl.dl-list dd {
        padding: 0 0 5px;
        font-size: 14px;
        line-height: 1.7;
    }
    .company-wrap .txt-tag {
        font-size: 13px;
    }
}

/*-------------------------------
 * 13. 201218 トップページ リンク追加
 * ----------------------------*/
 #link-wrap {
 	margin: 1rem 0 3.5rem;
 }
 #link-wrap ul.link-list {
 	display: flex;
 		flex-flow: row wrap;
 		justify-content: flex-start;
 		align-items: flex-start;
 		align-content: flex-start;
 		margin: 0;
 }
 #link-wrap ul.link-list li {
 	width: 33.3333%;
 	font-family: 'Saira Extra Condensed', sans-serif !important;
 		font-weight: 600;
 		font-size: 45px;
 		border-right: 1px solid #d5d5d5;
 		background: url(../image/arrow-next.svg) 93% 50% no-repeat;
 		background-size: 14px 26px;
 }
 #link-wrap ul.link-list li:nth-of-type(n+3) {
 	border-right: none;
 }
 #link-wrap ul.link-list li a {
 	display: block;
 	width: 100%;
 	padding: 0 30px;
 }
 #link-wrap ul.link-list li a:hover {
 	text-decoration: none;
 }
 #link-wrap ul.link-list li:hover {
 	opacity: 0.7;
 }
 #link-wrap ul.link-list li .icon {
 	/* display: inline-block; */
 	display: block;
    margin: 0 auto;
 	/* width: 50px; */
 	width: 240px;
 	/* margin-right: 5px; */
 	/* vertical-align: -7%; */
 }
 #link-wrap ul.link-list li .icon img {
    width: 100%;
 }
 #link-wrap ul.link-list li .txt {
 	display: block;
 	font-size: 13px;
 	font-weight: 500;
 	margin-left: 65px;
 	margin-top: -25px;
 }
 @media (max-width: 1199.98px) {
 	#link-wrap ul.link-list li {
 		font-size: 30px;
 	}
 	#link-wrap ul.link-list li .icon {
 		/* width: 40px; */
        width: 80%;
        margin-right: auto;
 	}
 	#link-wrap ul.link-list li .txt {
 		margin-left: 50px;
 		margin-top: -15px;
 		font-size: 12px;
 	}
 }
 @media (max-width: 991.98px) {
 	#link-wrap ul.link-list li {
 		font-size: 25px;
 		background-size: 11px 20px;
 	}
 	#link-wrap ul.link-list li .icon {
 		/* width: 30px; */
 	}
 	#link-wrap ul.link-list li .txt {
 		margin-left: 38px;
 		margin-top: -12px;
 		font-size: 10px;
 	}
 	#link-wrap ul.link-list li a {
 		padding: 0 20px;
 	}
 }
 @media (max-width: 767.98px) {
 	#link-wrap {
 		margin-bottom: 3rem;
 	}
 	#link-wrap ul.link-list li {
 		width: 50%;
 		margin-bottom: 10px;
 	}
 	#link-wrap ul.link-list li a {
 		padding: 0;
 	}
 	#link-wrap ul.link-list li:nth-of-type(odd) {
 		border-right: 1px solid #d5d5d5;
 	}
 	#link-wrap ul.link-list li:nth-of-type(even) {
 		border-right: none !important;
 		padding-left: 10px;
 	}
     #link-wrap ul.link-list li .icon {
        margin: 0 auto 0 0;
     }
 }
 @media (max-width: 575.98px) {
 	#link-wrap ul.link-list li {
 		font-size: 21px;
 		background-size: 8px 15px;
 		background-position: 94% 50%;
 	}
 	#link-wrap ul.link-list li .icon {
 		/* width: 25px; */
 		/* margin-right: 3px; */
 		vertical-align: -14%;
 	}
 	#link-wrap ul.link-list li .txt {
 		font-size: 7px;
 		margin-left: 33px;
 	}
 }
 @media (max-width: 380.98px) {
 	#link-wrap ul.link-list li {
 		background-size: 6px 10px;
 		background-position: 96% 50%;
 	}
 }
 @media (max-width: 320.98px) {
 	#link-wrap ul.link-list li {
 		font-size: 18px;
 	}
 }


/*-------------------------------
* 14. 210108 多言語サイトへのリンク追加
 * ----------------------------*/
#language-list {
    width: 190px;
    position: absolute;
    top: 3px;
    right: 200px;
}
#language-list ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
}
#language-list ul li:first-of-type::after {
    display: inline-block;
    content: "|";
    vertical-align: 5%;
    padding-left: 10px;
}
#language-list ul li:last-of-type {
    padding-left: 10px;
    padding-top: 1px;
}
@media (max-width: 1199.98px) {
    #language-list {
        right: 180px;
    }
}
@media (max-width: 767.98px) {
    header {
      height: 80px !important;
    }
    header .logo {
      width: 150px !important;
      margin-left: -5px;
     }
     header .logo img {
      width: 150px !important;
      /* height: 27px !important; */
     }
    #language-list {
        width: 140px;
        right: 87px;
        top: 0;
        font-size: 10px;
    }
    #language-list ul li:first-of-type::after {
        padding-left: 5px;
    }
    #language-list ul li:last-of-type {
        padding-left: 5px;
        padding-top: 0;
    }
}
@media (max-width: 360.98px) {
    header .logo {
      width: 120px !important;
     }
     header .logo img {
      width: 120px !important;
      height: 25px !important;
     }
}
@media (max-width: 320.98px) {
    header .logo {
      width: 100px !important;
     }
     header .logo img {
      width: 100px !important;
      height: 21px !important;
     }
    #language-list {
        width: 125px;
        right: 80px;
        font-size: 8px;
    }
    #language-list ul li:first-of-type::after {
        padding-left: 3px;
    }
    #language-list ul li:last-of-type {
        padding-left: 3px;
    }
}

/*-------------------------------
* event good
* ----------------------------*/
.wpcf7-spinner {
    display: none!important;
}
a.btn {
    text-decoration: none!important;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
.about-box__inner {
  display: flex;
  justify-content: center;
}
.about-box__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 280px;
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid #d5d5d5;
}
.about-box__left img {
  width: 100%;
  max-width: 100%;
}
.about-box__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 16px;
}
.about-box__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 180px;
  padding-bottom: 6px;
  border-bottom: 1px solid #d5d5d5;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}
.about-box__btn span {
  display: block;
}
.about-box__btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../image/icon-arrow.svg) no-repeat;
}
.about-box__btn:hover {
  opacity: 0.6;
  text-decoration: none;
}

.news-wrap.section-wrap {
  margin-bottom: 3rem;
}

.banner-wrap {
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.banner-wrap a {
  transition: opacity 0.9s ease;
}
.banner-wrap a:hover {
  opacity: 0.6;
}
.banner-wrap a img {
  width: 100%;
  max-width: 815px;
}

#contact-wrap .section-ttl.about-ttl {
    font-size: 40px;
}
#contact-wrap .about-img-wrap {
    margin: 60px auto;
    text-align: center;
}
#contact-wrap .about-img {
    width: 80%;
    max-width: 100%;
}

@media (max-width: 900px) {
  .about-box__inner {
    flex-direction: column;
  }
  .about-box__left {
    margin-bottom: 24px;
    border: none;
  }
  .about-box__right {
    margin-left: 0;
  }
  .about-box__text .pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .about-box__inner {
    align-items: center;
  }
  .about-box__left {
    margin-right: 0;
    padding-right: 0;
  }
  .banner-wrap {
    margin-left: 16px;
    margin-right: 16px;
  }

  #contact-wrap .section-ttl.about-ttl {
    font-size: 20px;
    }
    #contact-wrap .about-img {
        width: 90%;
    }
}