@charset "utf-8";

/* Google Fonts - Noto Serif JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap');

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

body {
  line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  font-family: inherit;
  font-size: inherit;
  vertical-align:middle;
}

/* ----------------------------
  layout - outline
---------------------------- */
* {
  box-sizing: border-box;
}

ul,ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

:focus {
  outline: none;
}

body {
  min-width: 320px;
  position: relative;
  padding-top: 60px;
  color: #333;
  font-family: 'Noto Sans JP', メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 768px), print {
  body {
    min-width: 1100px;
    padding-top: 80px;
    font-size: 16px;
  }
}

/* ----------------------------
  layout - global header
---------------------------- */
#global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(4, 0, 0, 0.2);
  z-index: 9010;
}

#global-header .gh-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

#global-header .gh-logo {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58px;
  height: 42px;
  margin: auto;
  z-index: 9010;
}

#global-header .gh-logo img {
  display: block;
}

#global-header #gh-nav-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 0;
  text-indent: -9999px;
  color: #FFF;
  -webkit-appearance: none;
  background: #FFF;
  z-index: 9010;
}

#global-header #gh-nav-icon span {
  position: absolute;
  display: block;
  width: 25px;
  height: 2px;
  top: 29px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 1px;
  background: #000;
  overflow: hidden;
}

#global-header #gh-nav-icon span:nth-of-type(1) {
  transform: translateY(-8px) rotate(0);
}

#global-header #gh-nav-icon[data-default="false"] span:nth-of-type(1) {
  animation: nav-icon-bar01 .25s forwards;
}

#global-header #gh-nav-icon.is-open span:nth-of-type(1) {
  animation: nav-icon-bar01-open .25s forwards;
}

#global-header #gh-nav-icon[data-default="false"] span:nth-of-type(2) {
  animation: nav-icon-bar02 .25s forwards;
}

#global-header #gh-nav-icon.is-open span:nth-of-type(2) {
  animation: nav-icon-bar02-open .25s forwards;
}

#global-header #gh-nav-icon span:nth-of-type(3) {
  transform: translateY(8px) rotate(0);
}

#global-header #gh-nav-icon[data-default="false"] span:nth-of-type(3) {
  animation: nav-icon-bar03 .25s forwards;
}

#global-header #gh-nav-icon.is-open span:nth-of-type(3) {
  animation: nav-icon-bar03-open .25s forwards;
}

@keyframes nav-icon-bar01 {
    0% { transform: translateY(0) rotate(45deg); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-8px) rotate(0); }
}

@keyframes nav-icon-bar01-open {
    0% { transform: translateY(-8px) rotate(0); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(0) rotate(45deg); }
}

@keyframes nav-icon-bar02 {
    0% { transform: rotateX(90deg); }
   50% { transform: rotateX(90deg); }
  100% { transform: rotateX(0); }
}

@keyframes nav-icon-bar02-open {
    0% { transform: rotateX(0); }
   50% { transform: rotateX(90deg); }
  100% { transform: rotateX(90deg); }
}

@keyframes nav-icon-bar03 {
    0% { transform: translateY(0) rotate(-45deg); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(8px) rotate(0); }
}

@keyframes nav-icon-bar03-open {
    0% { transform: translateY(8px) rotate(0); }
   50% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(0) rotate(-45deg); }
}

#global-header #global-nav {
  display: none;
}

#global-header .gh-language {
  display: none;
}

#global-nav-sp {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  /*height: 100%;*/
  top: 0;
  left: 0;
  background: #FFF;
  z-index: 9005;
  box-shadow: 0px 0px 10px black
}

#global-nav-sp .gnav-sp {
  height: 100%;
  /*max-height: 360px;
  /*margin: auto 0;*/
  padding-top: 60px;
}

#global-nav-sp .gnav-head {
  display: flex;
  align-items: center;
}

#global-nav-sp .gnav-head div {
  width: 50%;
  padding: 10px;
  line-height: 0;
}

#global-nav-sp .gnav-head div:first-child {
  width: 50%;
  padding: 10px 9px 10px 10px;
  border-right: 1px solid #ccc;
}

#global-nav-sp .gnav-head div img {
  max-height: 100%;
  width: auto;
}

#global-nav-sp .gnav-sp ul {
  /*display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 30px 0;
  justify-content: space-between;*/
  line-height: 0;
}

#global-nav-sp .gnav-sp ul li {
  border-top: 1px solid #ccc;
}

#global-nav-sp .gnav-sp ul li a {
  display: block;
  padding: 10px;
  position: relative;
}

#global-nav-sp .gnav-sp ul li a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  top: 19px;
}

#global-nav-sp .gnav-sp ul li a img {
  height: 20px;
  width: auto;
}

#global-nav-sp .gh-subnav-sp ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

#global-nav-sp .gh-subnav-sp ul li {
  width: 50%;
  border-bottom: solid 1px #ccc;
}

#global-nav-sp .gh-subnav-sp ul li:nth-last-child(3) ~ li {
  border-bottom: none;
}

#global-nav-sp .gh-subnav-sp ul li a {
  display: flex;
  padding: 10px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#global-nav-sp .gh-subnav-sp ul li:nth-child(odd) a {
  border-right: solid 1px #ccc;
}

#global-nav-sp .gh-language {
  display: block;
  position: relative;
  letter-spacing: 0.1em;
  font-size: 12px;
  text-align: center;
  border-bottom: solid 1px #ccc;
}

#global-nav-sp .gh-language-btn {
  position: relative;
  text-align: center;
  height: 45px;
  line-height: 45px;
  cursor: pointer;
  z-index: 1;
}

#global-nav-sp .gh-language.is-open .gh-language-btn {
  color: #8e6d4c;
}

#global-nav-sp .gh-language-btn::after {
  box-sizing: content-box;
  display: inline-block;
  content: '';
  vertical-align: 2px;
  margin-left: 14px;
  border-style: solid;
  border-color: transparent;
  border-width: 5px 5px 0 5px;
  border-top-color: #000;
}

#global-nav-sp .gh-language.is-open .gh-language-btn::after {
  transform: rotate(180deg);
}

#global-nav-sp .gh-language-list {
  position: absolute;
  bottom: 0;
  white-space: nowrap;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 15px;
  padding: 15px 15px 60px 15px;
  background: #dedede;
  text-align: center;
  border-radius: 5px;
  transition: all 0.2s;
  background: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  transform: translateY(5px);
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}

#global-nav-sp .gh-language.is-open .gh-language-list {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#global-nav-sp .gh-language-list li:not(:first-child) {
  margin-top: 5px;
}

#global-nav-sp::after {
  content: '';
  display: block;
  width: 100%;
  height: 20px;
  background: url('/common/images/bg_pattern_kura.gif') repeat center top;
  background-size: 15px 15px;
}

#global-nav-sp .gh-sns {
  margin: 15px 0;
}

#global-nav-sp .gh-sns ul {
  max-width: 375px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}

#global-nav-sp .gh-sns ul li {
  margin: 0 20px;
}

#global-nav-sp .gh-sns ul li img {
  display: block;
}

@media screen and (min-width: 768px), print {
  #global-header {
    height: 80px;
    position: absolute;
    transition: all 0.2s;
    top: -60px;
    transform: translateY(60px);
    transition: top .2s;
  }

  #global-header.is-fixed {
    position: fixed;
    height: 60px;
    top: 0;
    transform: translateY(0);
  }

  #global-header .gh-inner {
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 1100px;
    height: 80px;
    padding: 0 25px;
  }

  #global-header.is-fixed .gh-inner {
    height: 60px;
  }

  #global-header .gh-logo {
    position: static;
    width: 82px;
    height: 60px;
    margin: 0;
    transition: all 0.2s;
  }

  #global-header.is-fixed .gh-logo {
    width: 54px;
    height: 40px;
  }

  #global-header #gh-nav-icon {
    display: none;
  }

  #global-header #global-nav {
    display: block!important;
    width: 560px;
    margin-left: auto;
    margin-right: 30px;
  }

  #global-header #global-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 0;
  }

  #global-header #global-nav ul li:not(:first-child) {
    margin-left: 30px;
  }

  #global-header #global-nav ul a {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: .2s color;
  }

  #global-header #global-nav ul a:hover {
    color: #8e6d4c;
  }

  #global-header .gh-language {
    display: block;
    position: relative;
    height: 25px;
    font-size: 12px;
    text-align: center;
    padding-left: 18px;
    border-left: solid 1px #ccc;
  }

  #global-header .gh-language-btn {
    position: relative;
    height: 25px;
    line-height: 25px;
    padding: 0 18px;
    cursor: pointer;
    z-index: 1;
  }

  #global-header .gh-language.is-open .gh-language-btn {
    color: #8e6d4c;
  }

  #global-header .gh-language-btn::after {
    box-sizing: content-box;
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    right: 3px;
    bottom: 0;
    margin: auto 0;
    border-style: solid;
    border-color: transparent;
    border-width: 3px 3px 0 3px;
    border-top-color: #000;
  }

  #global-header .gh-language.is-open .gh-language-btn::after {
    transform: rotate(180deg);
  }

  #global-header .gh-language-list {
    position: absolute;
    top: -10px;
    left: 5px;
    width: calc(100% + 10px);
    padding: 45px 10px 10px 10px;
    background: #dedede;
    text-align: center;
    border-radius: 5px;
    transition: all 0.2s;
    background: #fff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
    z-index: 0;
  }

  #global-header .gh-language.is-open .gh-language-list {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }

  #global-header .gh-language-list li:not(:last-child) {
    margin-bottom: 5px;
  }

  #global-nav-sp {
    display: none!important;
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  #global-header #global-nav ul li a svg path {
    transition: all 0.2s;
  }

  #global-header #global-nav ul li a:hover svg path {
    fill: #8e6d4c;
  }

  #global-header .gh-language-btn {
    transition: all 0.2s;
  }

  #global-header .gh-language-btn:hover {
    color: #8e6d4c;
  }

  #global-header .gh-language-list a {
    transition: all 0.2s;
  }

  #global-header .gh-language-list a:hover {
    color: #8e6d4c;
  }
}

/* ----------------------------
  layout - global footer
---------------------------- */
#global-footer {
  font-size: 14px;
  line-height: 1.5;
  display: none!important;
}

#global-footer-sp {
  margin-top: 4rem;
  line-height: 1.5;
  display: block!important;
}

#global-footer-sp::after {
  content: '';
  display: block;
  width: 100%;
  height: 20px;
  background: url('/common/images/bg_pattern_kura.gif') repeat center 7px;
  background-size: 15px 15px;
}

#global-footer-sp .gf-sns {
  margin: 20px 0;
}

#global-footer-sp .gf-sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#global-footer-sp .gf-sns ul li {
  margin: 0 25px;
}

#global-footer-sp .gf-sns ul li img {
  display: block;
}

#global-footer-sp .gf-nav {
  background: #eee;
}

#global-footer-sp .gf-nav ul {
	border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
}

#global-footer-sp .gf-nav ul li {
  flex: 0 0 50%;
	width: 50%;
	border-style: solid;
	border-color: #ccc;
	box-sizing: border-box;
}

#global-footer-sp .gf-nav ul li:nth-child(odd) {
	border-width: 0 1px 1px 0;
}

#global-footer-sp .gf-nav ul li:nth-child(even) {
	border-width: 0 0 1px 0;
}

#global-footer-sp .gf-nav ul li:nth-child(odd):last-child {
  padding-right: 50%;
  flex: 0 0 100%;
  width: 100%;
	border-width: 0 0 1px 0;
}

#global-footer-sp .gf-nav ul li:nth-child(odd):last-child a {
  border-right: 1px solid #ccc;
}

#global-footer-sp .gf-nav ul li.gf-nav-allergen a {
  border-right: 0px !important;
}

#global-footer-sp .gf-nav ul li a {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
	padding: 14px 10px 14px 27px;
}

#global-footer-sp .gf-nav ul li a::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  display: block;
  width: 7px;
  height: 11px;
  margin: auto 0;
  background: url('/common/images/gf_arrow.svg') no-repeat center center;
  background-size: contain;
}

#global-footer-sp .gf-language ul {
  font-size: 12px;
  display: flex;
  background: #eee;
  border-bottom: 1px solid #ccc;
}

#global-footer-sp .gf-language ul li {
  flex: 1 1 25%;
}

#global-footer-sp .gf-language ul li:not(:last-child) {
  border-right: 1px solid #ccc;
}

#global-footer-sp .gf-language ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px;
}

#global-footer-sp .gf-copyright {
  padding: 8px;
  display: block;
  font-size: 10px;
  font-style: normal;
  text-align: center;
  background: #eee;
}

/* popup */
.page-popup #global-footer-sp {
  margin-top: 3rem;
}

.page-popup #global-footer-sp .gf-copyright {
  padding: 15px 8px;
}

@media screen and (min-width: 768px), print {
  #global-footer-sp {
    display: none!important;
  }

  #global-footer {
    margin-top: 100px;
    display: block!important;
    border-top: 1px solid #ccc;
    background: #eeeeee;
  }

  #global-footer::after {
    content: '';
    display: block;
    width: 100%;
    height: 30px;
    background: url('/common/images/bg_pattern_kura.gif') repeat center top;
    background-size: 15px 15px;
  }

  #global-footer .gf-inner {
    padding: 35px 0 22px;
    width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  #global-footer .gf-sitemap {
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  #global-footer .gf-sitemap .gf-sitemap-column {
    flex: 0 0 calc(25% - 10px);
  }

  #global-footer .gf-sitemap .gf-sitemap-heading {
    font-weight: bold;
    margin-bottom: 0.75em;
  }

  #global-footer .gf-sitemap .gf-sitamap-list + .gf-sitamap-list {
    margin-top: 2em;
  }

  #global-footer .gf-sitemap .gf-sitamap-list > li {
    margin-bottom: 0.75em;
  }

  #global-footer .gf-sitemap .gf-sitamap-list > li > a {
    display: inline-block;
    color: #666;
    padding-left: 15px;
    letter-spacing: 0.04em;
  }

  #global-footer .gf-sitemap .gf-sitamap-list > li > a::before {
    display: inline-block;
    margin: 0 4px 0 -10px;
    content: '';
    width: 6px;
    height: 10px;
    background: url('/common/images/gf_arrow.svg') no-repeat center center;
    background-size: contain;
  }

  #global-footer .gf-material > ul {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
  }

  #global-footer .gf-material > ul > li {
    width: 350px;
    margin: 0 20px;
  }

  #global-footer .gf-material > ul > li a {
    color: #222222;
    min-width: 350px;
    line-height: 60px;
    font-weight: 500;
  }

  #global-footer .gf-sns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 30px 50px;
    align-items: center;
    background: #fff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05);
  }

  #global-footer .gf-sns .gf-sns-heading {
    font-weight: bold;
    margin-right: 50px;
    font-feature-settings: "palt";
  }

  #global-footer .gf-sns ul {
    display: flex;
    align-items: center;
    line-height: 0;
  }

  #global-footer .gf-sns ul li:not(:first-child) {
    margin-left: 30px;
  }
  
  #global-footer .gf-sns p {
    width: 100%;
  }

  #global-footer .gf-logo {
    width: 120px;
    margin: 0 auto 20px;
  }

  #global-footer .gf-logo img {
    display: block;
  }

  #global-footer .gf-copyright {
    display: block;
    margin-left: auto;
    letter-spacing: 0.05em;
    font-size: 12px;
    font-style: normal;
  }

  /* popup */
  .page-popup #global-footer {
    margin-top: 80px;
  }

  .page-popup #global-footer .gf-inner {
    display: block;
    width: 100%;
    background: #eee;
  }

  .page-popup #global-footer .gf-inner .gf-contents {
    display: block;
    width: 1100px;
    margin: 0 auto;
    background: inherit;
  }

}


/* ----------------------------
  to-pagetop
---------------------------- */
.to-pagetop {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: -42px;
  right: 15px;
  transition: bottom 0.3s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 100;
}

.to-pagetop.is-show {
  bottom: 23px;
}

.to-pagetop a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: #000;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
}

.to-pagetop a::before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  box-sizing: border-box;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px), print {
  .to-pagetop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: -62px;
    right: 40px;
    transition: bottom 0.3s cubic-bezier(.68,-0.55,.27,1.55);
    z-index: 100;
  }

  .to-pagetop.is-show {
    bottom: 40px;
  }

  .to-pagetop a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: #000;
    text-indent: -9999px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 50%;
    transform: scale(1);
    transition: opacity 0.3s cubic-bezier(.68,-0.55,.27,1.55);
  }

  .to-pagetop a:hover {
    opacity: .7;
  }

  .to-pagetop a::before {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-color: #fff;
    border-width: 2px 0 0 2px;
    box-sizing: border-box;
    transform: rotate(45deg);
  }

}

/* ----------------------------
  main - base
---------------------------- */
main a {
  color: #666;
  text-decoration: none;
}

.page-header,
.page-header-hero {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  line-height: 1;
}

@media screen and (min-width: 768px), print {
  .page-header {
    padding: 55px 0;
  }

  .page-header-hero {
    padding: 0;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .page-header-hero .page-heading {
    width: 1100px;
    padding: 0 20px;
/*
    margin: 0 auto;
*/
  }

}


.title-header {
  padding: 0 5px 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.heading-title {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .title-header {
    padding: 0 5px;
    margin-bottom: 15px;
  }

  .heading-title {
    margin-bottom: 10px;
    font-size: 24px;
  }

}


/* ----------------------------
  class - link
---------------------------- */
ol.list-number {
	counter-reset: listnum;
}

ol.list-number li {
  padding-left: 1.5em;
}

ol.list-number li:not(:last-child) {
  margin-bottom: 0.3em;
}

ol.list-number li::before {
  margin-left: -1.5em;
  display: inline-block;
	content: counter(listnum)'.';
  width: 1.5em;
  height: 1.5em;
	counter-increment: listnum;
}

ul.list-normal li {
  padding-left: 1em;
}

ul.list-normal li:not(:last-child) {
  margin-bottom: 0.3em;
}

ul.list-normal li::before {
  margin-left: -1em;
  display: inline-block;
  content: '・';
  width: 1em;
  height: 1em;
}

ul.list-circle li {
  position: relative;
}

ul.list-circle li:not(:last-child) {
  margin-bottom: 0.3em;
}

ul.list-circle li::before {
  position: absolute;
  left: 0;
  content: '';
  box-sizing: border-box;
  border-style: solid;
  border-color: #ccc;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  ul.list-circle li {
    padding-left: 18px;
  }

  ul.list-circle li::before {
    top: calc((1.69em - 11px)/2);
    width: 11px;
    height: 11px;
    border-width: 3px;
  }

}

@media screen and (min-width: 768px), print {
  ul.list-circle li {
    padding-left: 18px;
  }

  ul.list-circle li::before {
    top: calc((1.69em - 11px)/2);
    width: 11px;
    height: 11px;
    border-width: 3px;
  }

  ul.list-circle li {
    padding-left: 20px;
  }

  ul.list-circle li::before {
    top: calc((1.75em - 11px)/2);
    width: 14px;
    height: 14px;
    border-width: 4px;
  }

  ul.list-arrow li {
    padding-left: 12px;
  }

  ul.list-arrow li::before {
    top: calc((1.75em - 5px)/2);
  }
}


/* ----------------------------
  class - link
---------------------------- */
a.link-underline {
  text-decoration: underline;
}

a.link-arrow::before {
  display: inline-block;
  content: '';
  margin-right: 0.25em;
  vertical-align: middle;
  width: 0.75em;
  height: 0.75em;
  background: url(../images/arrow_01.svg) no-repeat center center;
  background-size: contain;
}

a.btn-text.link-arrow::before {
  display: none;
}

a.btn-text.link-arrow {
  min-width: 300px;
}

a.btn-text.link-arrow::after {
  display: inline-block;
  content: '';
  margin-left: .5em;
  vertical-align: inherit;
  width: 0.75em;
  height: 0.75em;
  background: url(../images/arrow_01_black.svg) no-repeat center center;
  background-size: contain;
}

a.link-pdf::after {
  display: inline-block;
  content: '';
  margin-left: 0.25em;
  vertical-align: -0.25em;
  width: 1.2em;
  height: 1.2em;
  background: url(../images/icon_pdf_01.svg) no-repeat center center;
  background-size: contain;
}

a.link-blank::after {
  display: inline-block;
  content: '';
  margin-left: 0.25em;
  vertical-align: -0.25em;
  width: 1em;
  height: 1em;
  background: url(../images/icon_blank_01.svg) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .btn.btn-text {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 768px), print {
  .btn.btn-text {
    font-size: 18px !important;
  }

}
/* ----------------------------
  class - margin
---------------------------- */
.mgt-none {
  margin-top: 0!important;
}

.mgt-xs {
  margin-top: 0.5rem!important;
}

.mgt-sm {
  margin-top: 1rem!important;
}

.mgt-md {
  margin-top: 1.5rem!important;
}

.mgt-lg {
  margin-top: 2rem!important;
}

.mgt-xl {
  margin-top: 3rem!important;
}

.mgr-none {
  margin-right: 0!important;
}

.mgr-xs {
  margin-right: 0.5rem!important;
}

.mgr-sm {
  margin-right: 1rem!important;
}

.mgr-md {
  margin-right: 1.5rem!important;
}

.mgr-lg {
  margin-right: 2rem!important;
}

.mgr-xl {
  margin-right: 3rem!important;
}

.mgb-none {
  margin-bottom: 0!important;
}

.mgb-xs {
  margin-bottom: 0.5rem!important;
}

.mgb-sm {
  margin-bottom: 1rem!important;
}

.mgb-md {
  margin-bottom: 1.5rem!important;
}

.mgb-lg {
  margin-bottom: 2rem!important;
}

.mgb-xl {
  margin-bottom: 3rem!important;
}

.mgl-none {
  margin-left: 0!important;
}

.mgl-xs {
  margin-left: 0.5rem!important;
}

.mgl-sm {
  margin-left: 1rem!important;
}

.mgl-md {
  margin-left: 1.5rem!important;
}

.mgl-lg {
  margin-left: 2rem!important;
}

.mgl-xl {
  margin-left: 3rem!important;
}

@media screen and (max-width: 767px) {
  .mgt-sp-none {
    margin-top: 0!important;
  }

  .mgt-sp-xs {
    margin-top: 0.5rem!important;
  }

  .mgt-sp-sm {
    margin-top: 1rem!important;
  }

  .mgt-sp-md {
    margin-top: 1.5rem!important;
  }

  .mgt-sp-lg {
    margin-top: 2rem!important;
  }

  .mgt-sp-xl {
    margin-top: 3rem!important;
  }

  .mgr-sp-none {
    margin-right: 0!important;
  }

  .mgr-sp-xs {
    margin-right: 0.5rem!important;
  }

  .mgr-sp-sm {
    margin-right: 1rem!important;
  }

  .mgr-sp-md {
    margin-right: 1.5rem!important;
  }

  .mgr-sp-lg {
    margin-right: 2rem!important;
  }

  .mgr-sp-xl {
    margin-right: 3rem!important;
  }

  .mgb-sp-none {
    margin-bottom: 0!important;
  }

  .mgb-sp-xs {
    margin-bottom: 0.5rem!important;
  }

  .mgb-sp-sm {
    margin-bottom: 1rem!important;
  }

  .mgb-sp-md {
    margin-bottom: 1.5rem!important;
  }

  .mgb-sp-lg {
    margin-bottom: 2rem!important;
  }

  .mgb-sp-xl {
    margin-bottom: 3rem!important;
  }

  .mgl-sp-none {
    margin-left: 0!important;
  }

  .mgl-sp-xs {
    margin-left: 0.5rem!important;
  }

  .mgl-sp-sm {
    margin-left: 1rem!important;
  }

  .mgl-sp-md {
    margin-left: 1.5rem!important;
  }

  .mgl-sp-lg {
    margin-left: 2rem!important;
  }

  .mgl-sp-xl {
    margin-left: 3rem!important;
  }
}

/* ----------------------------
  class - padding
---------------------------- */
.pdt-none {
  padding-top: 0!important;
}

.pdt-xs {
  padding-top: 0.5rem!important;
}

.pdt-sm {
  padding-top: 1rem!important;
}

.pdt-md {
  padding-top: 1.5rem!important;
}

.pdt-lg {
  padding-top: 2rem!important;
}

.pdt-xl {
  padding-top: 3rem!important;
}

.pdr-none {
  padding-right: 0!important;
}

.pdr-xs {
  padding-right: 0.5rem!important;
}

.pdr-sm {
  padding-right: 1rem!important;
}

.pdr-md {
  padding-right: 1.5rem!important;
}

.pdr-lg {
  padding-right: 2rem!important;
}

.pdr-xl {
  padding-right: 3rem!important;
}

.pdb-none {
  padding-bottom: 0!important;
}

.pdb-xs {
  padding-bottom: 0.5rem!important;
}

.pdb-sm {
  padding-bottom: 1rem!important;
}

.pdb-md {
  padding-bottom: 1.5rem!important;
}

.pdb-lg {
  padding-bottom: 2rem!important;
}

.pdb-xl {
  padding-bottom: 3rem!important;
}

.pdl-none {
  padding-left: 0!important;
}

.pdl-xs {
  padding-left: 0.5rem!important;
}

.pdl-sm {
  padding-left: 1rem!important;
}

.pdl-md {
  padding-left: 1.5rem!important;
}

.pdl-lg {
  padding-left: 2rem!important;
}

.pdl-xl {
  padding-left: 3rem!important;
}

@media screen and (max-width: 767px) {
  .pdt-sp-none {
    padding-top: 0!important;
  }

  .pdt-sp-xs {
    padding-top: 0.5rem!important;
  }

  .pdt-sp-sm {
    padding-top: 1rem!important;
  }

  .pdt-sp-md {
    padding-top: 1.5rem!important;
  }

  .pdt-sp-lg {
    padding-top: 2rem!important;
  }

  .pdt-sp-xl {
    padding-top: 3rem!important;
  }

  .pdr-sp-none {
    padding-right: 0!important;
  }

  .pdr-sp-xs {
    padding-right: 0.5rem!important;
  }

  .pdr-sp-sm {
    padding-right: 1rem!important;
  }

  .pdr-sp-md {
    padding-right: 1.5rem!important;
  }

  .pdr-sp-lg {
    padding-right: 2rem!important;
  }

  .pdr-sp-xl {
    padding-right: 3rem!important;
  }

  .pdb-sp-none {
    padding-bottom: 0!important;
  }

  .pdb-sp-xs {
    padding-bottom: 0.5rem!important;
  }

  .pdb-sp-sm {
    padding-bottom: 1rem!important;
  }

  .pdb-sp-md {
    padding-bottom: 1.5rem!important;
  }

  .pdb-sp-lg {
    padding-bottom: 2rem!important;
  }

  .pdb-sp-xl {
    padding-bottom: 3rem!important;
  }

  .pdl-sp-none {
    padding-left: 0!important;
  }

  .pdl-sp-xs {
    padding-left: 0.5rem!important;
  }

  .pdl-sp-sm {
    padding-left: 1rem!important;
  }

  .pdl-sp-md {
    padding-left: 1.5rem!important;
  }

  .pdl-sp-lg {
    padding-left: 2rem!important;
  }

  .pdl-sp-xl {
    padding-left: 3rem!important;
  }
}


/* ----------------------------
  class - color
---------------------------- */
.color-primary {
  color: #8e6d4c;
}

/* ----------------------------
  class - section
---------------------------- */
.section-body {
  margin: 0 15px;
}

@media screen and (min-width: 500px) {
  .section-body {
    width: 470px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px), print {
  .section-body {
    width: 1100px;
  }
}

/* ----------------------------
  class - display
---------------------------- */
.d-none {
  display: none!important;
}

.d-inline {
  display: inline!important;
}

.d-inline-block {
  display: inline-block!important;
}

.d-block {
  display: block!important;
}

@media screen and (max-width: 767.999px) {
  .d-sp-none {
    display: none!important;
  }
}

@media screen and (min-width: 768px), print {
  .d-pc-none {
    display: none!important;
  }
}

/* ----------------------------
  class - image
---------------------------- */
img.img-full {
  width: 100%;
}

/* ----------------------------
  class - btn
---------------------------- */
.btn {
  display: block;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-appearance: none;
  cursor: pointer;
  overflow: hidden;
}

.btn.btn-text {
  display: inline-block;
  padding: 0 1em;
  font-size: 18px;
  color: #333;
}

.btn-img {
  display: block;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-appearance: none;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
}

.btn_popup_close {
  max-width: 265px;
  height: 50px;
  margin: 0 auto;
  background: url("../images/btn_close_popup.png") no-repeat center;
  background-size: contain;
}

@media (hover: hover) {
  .btn,
  .btn-img {
    transition: border 0.2s ease-in;
  }

  .btn:hover,
  .btn-img:hover {
    border-color: #000;
  }
}

/* ----------------------------
  class - text
---------------------------- */
.text-serif {
  font-family: "Noto Serif JP", serif;
}

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

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

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

@media screen and (max-width: 767px) {
  .text-sp-center {
    text-align: center!important;
  }

  .text-sp-left {
    text-align: left!important;
  }

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

/* ----------------------------
  class - font
---------------------------- */
.font-xs {
  font-size: 12px!important;
}

.font-sm {
  font-size: 13px!important;
}

.font-md {
  font-size: 14px!important;
}

.font-lg {
  font-size: 16px!important;
}

.font-xl {
  font-size: 20px!important;
}

@media screen and (max-width: 767px) {
  .font-sp-xs {
    font-size: 12px!important;
  }

  .font-sp-sm {
    font-size: 13px!important;
  }

  .font-sp-md {
    font-size: 14px!important;
  }

  .font-sp-lg {
    font-size: 16px!important;
  }

  .font-sp-xl {
    font-size: 20px!important;
  }
}

@media screen and (min-width: 768px), print {
  .font-xs {
    font-size: 13px!important;
  }

  .font-sm {
    font-size: 15px!important;
  }

  .font-md {
    font-size: 16px!important;
  }

  .font-lg {
    font-size: 18px!important;
  }

  .font-xl {
    font-size: 22px!important;
  }
}


/* ------------------------------
  class - hanging
------------------------------ */
table.hanging {
  border-collapse: collapse;
}

table.hanging>tbody>tr>td {
  padding: 0 0 0.25em;
  vertical-align: top;
  border: none;
}

table.hanging .hanging-icon {
  white-space: nowrap;
}

/* ----------------------------
  grid
---------------------------- */
.col-wrap {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .col-wrap {
    margin: 0 auto;
    max-width: 1200px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto,
.col-sp-1, .col-sp-2, .col-sp-3, .col-sp-4, .col-sp-5, .col-sp-6, .col-sp-7, .col-sp-8, .col-sp-9, .col-sp-10, .col-sp-11, .col-sp-12, .col-sp, .col-sp-auto
{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media screen and (max-width: 767px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
  }

  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto,
  .col-sp-1, .col-sp-2, .col-sp-3, .col-sp-4, .col-sp-5, .col-sp-6, .col-sp-7, .col-sp-8, .col-sp-9, .col-sp-10, .col-sp-11, .col-sp-12, .col-sp, .col-sp-auto
  {
    padding-right: 7.5px;
    padding-left: 7.5px;
  }

  .col-sp {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sp-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sp-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sp-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sp-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sp-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sp-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sp-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sp-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sp-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sp-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sp-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sp-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sp-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sp-first {
    order: -1;
  }

  .order-sp-last {
    order: 13;
  }

  .order-sp-0 {
    order: 0;
  }

  .order-sp-1 {
    order: 1;
  }

  .order-sp-2 {
    order: 2;
  }

  .order-sp-3 {
    order: 3;
  }

  .order-sp-4 {
    order: 4;
  }

  .order-sp-5 {
    order: 5;
  }

  .order-sp-6 {
    order: 6;
  }

  .order-sp-7 {
    order: 7;
  }

  .order-sp-8 {
    order: 8;
  }

  .order-sp-9 {
    order: 9;
  }

  .order-sp-10 {
    order: 10;
  }

  .order-sp-11 {
    order: 11;
  }

  .order-sp-12 {
    order: 12;
  }

  .offset-sp-0 {
    margin-left: 0;
  }

  .offset-sp-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sp-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sp-3 {
    margin-left: 25%;
  }

  .offset-sp-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sp-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sp-6 {
    margin-left: 50%;
  }

  .offset-sp-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sp-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sp-9 {
    margin-left: 75%;
  }

  .offset-sp-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sp-11 {
    margin-left: 91.6666666667%;
  }
}

/* ----------------------------
  module - topics
---------------------------- */
.mod-topics {
}

.mod-topics .topics-list-item {
  padding: 0.35em 0;
}

.mod-topics .topics-list-head,
.mod-topics .topics-list-body {
  display: inline;
}

.mod-topics .topics-list-date {
  width: 90px;
  padding-right: 1em;
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
}

.mod-topics .topics-list-category {
  display: inline-block;
  vertical-align: text-bottom;
  box-sizing: content-box;
  padding: 0 20px;
  margin-right: 15px;
  height: 1.5em;
  min-width: 50px;
  font-size: 12px;
  text-align: center;
  line-height: 1.5em;
  border: 1px solid #333;
  border-radius: 0.75em;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (max-width: 767.999px) {
  .mod-topics .topics-list-body {
    max-width: calc(100% - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mod-topics .topics-list-head {
    font-size: 15px;
  }

  .mod-topics .topics-list-item {
    display: flex;
    align-items: center;
    padding: 0.35em 0 0.35em 0.75em;
    margin-bottom: 15px;
    border-style: solid;
    border-width: 0 0 1px 6px;
    border-color: #000;
    position: relative;
  }

  .mod-topics .topics-list-item::before {
    content: "";
    display: block;
    position: absolute;
    left: -6px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px;
    border-color:transparent;
    border-top-color:#fff;
    border-left-color:#fff;
  }
}

@media screen and (min-width: 768px), print {
  .mod-topics .topics-list-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
  }

  .mod-topics .topics-list-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }

  .mod-topics .topics-list-head {
    flex: 0 0 auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
  }

  .mod-topics .topics-list-date {
    width: 110px;
  vertical-align: middle;
  }

  .mod-topics .topics-list-category {
    padding: 0 15px;
    height: 1.64em;
    min-width: 70px;
    font-size: 14px;
    line-height: 1.64em;
    border-radius: 0.85em;
  }
}

/* ----------------------------
  slick
---------------------------- */
.slick-dots {
  display: flex;
  justify-content: center;
}

.slick-dots li {
  margin: 0 6px;
  width: 8px;
  height: 8px;
  overflow: hidden;
  background: #ccc;
  border-radius: 50%;
}

.slick-dots li.slick-active {
  background: #000;
}

.slick-dots li button {
  opacity: 0;
    width: 26px;
    height: 26px;
    position: absolute;
    margin-top: -8px;
    margin-left: -8px;
}

.slick-arrow {
  display: block;
  width: 25px;
  height: 25px;
  border: none;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 10;
}

.slick-prev {
  background-image: url(../images/arrow_slider_prev_sp.png);
}

.slick-next {
  background-image: url(../images/arrow_slider_next_sp.png);
}

@media screen and (min-width: 768px), print {
  .slick-dots li {
    margin: 0 10px;
    width: 10px;
    height: 10px;
  }

  .slick-arrow {
    width: 30px;
    height: 30px;
    background-color: #000;
  }

  .slick-prev {
    background-image: url(../images/arrow_slider_prev.png);
  }

  .slick-next {
    background-image: url(../images/arrow_slider_next.png);
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  .slick-arrow {
    transition: all 0.2s;
  }

  .slick-arrow:hover {
    transform: scale(1.1);
  }
}

/*SP*/
@media screen and (max-width: 767px){
  .top-hero .slick-dots {
    bottom: 16px !important;
  }
  .slick-dots li {
    margin: 5px 8px 0;
    width: 11px;
    height: 11px;
  }
  .slick-dots li button {
    opacity: 0;
    width: 28px;
    height: 28px;
    position: absolute;
    margin-top: -6px;
    margin-left: -8px;
  }
}



/* ----------------------------
  iframe-wrap
---------------------------- */
.iframe-wrap {
  padding: 30px 0 56.25%;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


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