@charset 'UTF-8';
@import url("https://fonts.googleapis.com/css?family=Sedgwick+Ave");

/*------------------------------------------------
html,body
------------------------------------------------*/

html,
body {
  font-family: Hiragino Sans, "ヒラギノ叔ゴシック", Hiragino Kaku Gothic ProN,
    "ヒラギノ叔ゴ ProN W3", "メイリオ", Meiryo;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000;
  background: #fff none;

  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}
*::-moz-selection {
  background: #faeb00;
}
*::selection {
  background: #faeb00;
}
*::-moz-selection {
  background: #faeb00;
}
.oh-open {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .tel_link {
    pointer-events: none;
  }
}
.ff-sedgwick {
  font-family: "Sedgwick Ave", cursive;
}

/*------------------------------------------------
wrapper
------------------------------------------------*/

@media screen and (min-width: 768px) {
  #wrapper {
    /*overflow: hidden;*/
    min-width: 1100px;
  }
  #wrapper .w1000 {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}

/*------------------------------------------------
header
------------------------------------------------*/

#header {
  position: relative;
  z-index: 10000;
  background-color: #fff;
  height: 100px;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #header {
    min-width: 1100px;
  }
}
.header-in {
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 10px 0 50px;
  height: 50px;
}
.header-logo {
  width: 262px;
}
.logo__link {
  display: block;
}
/* ------ option ------ */
.header-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
}
.header-link-item {
  font-size: 13px;
  line-height: 1;
  border-right: 1px solid #bfbfbf;
  transition: 0.5s ease;
}
.header-link-item a {
  display: block;
  padding: 8.5px 18px;
}
.header-link-item a::after {
  content: "\f054";
  font-family: fontawesome;
  display: inline-block;
  position: relative;
  margin-left: 10px;
  font-size: 10px;
}
/* ------ option ------ */
.header__nav {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
}
.header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.header__nav-item {
  font-size: 15px;
  line-height: 1;
}
.header__nav-link {
  padding: 0 18px;
  position: relative;
}
.header__nav-link::after {
  content: "";
  width: 0%;
  height: 7px;
  background-color: #f9e934;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transition: width 0.3s ease;
}
.header__nav-link span {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .header-link-item:hover {
    background-color: #333;
    color: #f9e934;
  }
  .header__nav-item.active .header__nav-link::after {
    width: 87%;
  }
  .header__nav-link:hover::after {
    width: 87%;
  }
}
/*------------ sp-header__menu-wrap ------------*/

.sp-header__menu-wrap {
  display: none;
}

/*------------------------------------------------
main
------------------------------------------------*/

@media screen and (min-width: 768px) {
  #main {
    /*IE貨*/
    display: block;
    margin-top: 100px;
  }
}

/*------------------------------------------------
page-top
------------------------------------------------*/

.page-top-wrp {
  position: relative;
  width: 100%;
  height: 0;
  margin-right: auto;
  margin-left: auto;
}

.pageTop {
  position: relative;
  display: none;
}
.pageTop a {
  font-size: 15px;
  line-height: 1em;
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 30px;
  display: inline-block;
  width: 50px;
  height: 50px;
  padding-top: 17px;
  transition: all 0.3s ease;
  text-align: center;
  color: #faeb00;
  background-color: #333333;
}
@media screen and (min-width: 768px) {
  .pageTop a:hover {
    background-color: #faeb00;
    color: #333333;
    padding-top: 13px;
  }
}
/*------------------------------------------------
breadcrumb
------------------------------------------------*/

.breadcrumb {
  width: 100%;
  margin: 10px auto;
  padding: 0 60px 0 2.5%;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin: 0 5px;
  text-decoration: none;
}
.breadcrumb__link {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
}
p.breadcrumb__link {
  display: inline;
}
a.breadcrumb__link {
  text-decoration: underline;
}
.breadcrumb__link i {
  text-decoration: underline;
  font-size: 13px;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
  a.breadcrumb__link:hover {
    text-decoration: none;
    color: #133177;
  }
  a.breadcrumb__link:hover i {
    text-decoration: none;
  }
}
/* /pc-only -----------*/

/*------------------------------------------------
footer
------------------------------------------------*/
#footer {
  padding-top: 80px;
}
.footer-in {
  background-color: #efefef;
}
.footer-in .footer-top,
.footer-in .fbnr {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer-top {
  padding: 50px 0 35px;
  border-bottom: 1px solid #c5c5c5;
  margin-bottom: 30px;
}
/* ------ option ------ */
.fnav {
  width: 730px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.fnav-item:not(:last-child) {
  margin-right: 50px;
}
.fnav-item__dt {
  font-weight: bold;
  font-size: 14px;
}
.fnav-item__dt:not(:first-child) {
  margin-top: 10px;
}
.fnav-item__dt a {
  position: relative;
  padding-left: 22px;
  display: inline-block;
}
/* prettier-ignore */
.fnav-item__dt a::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 14px;
	height: 5px;
	background: #000;
	background: -moz-linear-gradient( left,#000 0%,#000 50%,#faeb00 50%,#000 50%,#faeb00 50%,#faeb00 50%,#faeb00 100%);
	background: -webkit-linear-gradient(left,#000 0%,#000 50%,#faeb00 50%,#000 50%,#faeb00 50%,#faeb00 50%,#faeb00 100%);
	background: linear-gradient(to right,#000 0%,#000 50%,#faeb00 50%,#000 50%,#faeb00 50%,#faeb00 50%,#faeb00 100%);
}
.fnav-item__dd {
  font-size: 13px;
  margin-top: 9px;
}
.fnav-item > .fnav-item__dd {
  padding-left: 22px;
  position: relative;
}
.fnav-item > .fnav-item__dd > a {
  position: relative;
  padding-left: 12px;
  display: inline-block;
}
.fnav-item > .fnav-item__dd > a::before {
  content: "\f054";
  font-family: fontawesome;
  display: inline-block;
  font-size: 10px;
  position: absolute;
  top: 1px;
  left: 0;
}
.fnav-item__dd > ul {
  padding-left: 12px;
}
.fnav-item__dd > ul .fnav-item__dd a {
  padding-left: 15px;
  position: relative;
  display: inline-block;
}
.fnav-item__dd > ul .fnav-item__dd a::before {
  content: "?";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-img {
  width: 333px;
  position: absolute;
  top: -80px;
  right: -35px;
}
/* ------ option ------ */
.fbnr {
  padding-bottom: 20px;
}
.fbnr-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.fbnr-item {
  width: 238px;
  margin-right: 16px;
  margin-bottom: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fnav-item__dt a:hover,
  .fnav-item .fnav-item__dd a:hover {
    text-decoration: underline;
  }
  .fbnr-item:nth-child(4n) {
    margin-right: 0;
  }
  .fbnr-item a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
    opacity: 0;
    background-color: #faeb00;
  }
  .fbnr-item a:hover::before {
    opacity: 0.5;
  }
}
.fbnr-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
/* ------ option ------ */
.fbtm {
  background-color: #333;
  color: #fff;
}
.fbtm-in {
  width: 1000px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 85px;
  position: relative;
}
.fbtm-txt {
  border-left: 1px solid #faeb00;
  padding: 4px 0 4px 15px;
}
.fbtm-txt__address {
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.2;
  padding-bottom: 25px;
}
.fbtm-txt__address em {
  display: inline-block;
  margin-right: 15px;
}
.footer-copy {
  font-size: 11px;
  position: absolute;
  bottom: 20px;
  left: 44px;
}
/* ------ option ------ */
.fbtm-bnr {
}
.fbtm-bnr__link {
  width: 250px;
  height: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.fbtm-bnr__link span {
  width: 138px;
  position: relative;
}
.fbtm-bnr__link span::after {
  content: "\f08e";
  font-family: fontawesome;
  display: inline-block;
  position: absolute;
  right: -25px;
  top: 1px;
  color: #000;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .fbtm-bnr__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
    opacity: 0;
    background-color: #faeb00;
  }
  .fbtm-bnr__link:hover::before {
    opacity: 0.5;
  }
}
/*------------------------------------------------
not-found 404
------------------------------------------------*/

/* ---------------------------------------------------------------- SP ---- */

@media screen and (max-width: 767px) {
  html,
  body {
    font-size: 13px;
    line-height: 1.6;
  }

  .oh-open {
    overflow: hidden;
    z-index: -1;
    width: 100%;
    height: 100%;
  }

  /*------------------------------------------------
	wrapper
	------------------------------------------------*/

  #wrapper {
    width: 100%;
    overflow: hidden;
  }

  /*------------------------------------------------
	header
	------------------------------------------------*/
  #header {
    height: 50px;
  }
  .header-in {
    height: 100%;
  }
  .header-top {
    padding: 0 0 0 15px;
    height: 100%;
  }
  .header-link {
    display: none;
  }
  .header-logo {
    width: 194px;
  }

  /*------------ sp-header__menu-wrap ------------*/

  .sp-header__menu-wrap {
    display: block;
  }
  .sp-header__menu {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 50px;
    height: 50px;
    background-color: #000;
  }

  /* close default ------------*/

  .sp-header__btn {
    position: relative;
    width: 35px;
    height: 30px;
  }

  .sp-header__btn-line {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    width: 14px;
    height: 1px;
    margin: auto;
    transition: all 0.3s ease;
    opacity: 1;
    background-color: #f9e934;
  }
  .sp-header__btn-line:nth-of-type(1) {
    top: 0;
  }
  .sp-header__btn-line:nth-of-type(2) {
    top: 7px;
  }
  .sp-header__btn-line:nth-of-type(3) {
    top: 7px;
    opacity: 0;
  }
  .sp-header__btn-line:nth-of-type(4) {
    top: 14px;
  }
  .sp-header__btn-txt {
    font-size: 10px;
    transform: scale(0.7);
    font-weight: bold;
    line-height: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    color: #f9e934;
  }

  /* open ------------*/

  .btn-open .sp-header__btn-line:nth-of-type(1) {
    left: -100%;
    opacity: 0;
  }

  .btn-open .sp-header__btn-line:nth-of-type(2) {
    width: 25px;
    transform: rotate(137deg);
  }

  .btn-open .sp-header__btn-line:nth-of-type(3) {
    width: 25px;
    transform: rotate(-137deg);
    opacity: 1;
  }

  .btn-open .sp-header__btn-line:nth-of-type(4) {
    right: -100%;
    opacity: 0;
  }

  /*------------ header__nav ------------*/

  .header__nav {
    position: fixed;
    top: 50px;
    left: 0;
    display: none;
    width: 100%;
    color: #fff;
    background-color: #000;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100% - 50px);
  }
  .header__nav.is-active {
    display: block;
  }
  .header__nav-in {
    width: 100%;
    padding-bottom: 30px;
  }
  .header__nav-list {
    display: block;
  }
  .header__nav-item {
    font-size: 12px;
    font-weight: bold;
    border-top: 1px solid #505050;
    position: relative;
  }
  .header__nav-item:last-child {
    border-bottom: 1px solid #505050;
  }
  .header__nav-item:not(.header__nav-item--child):not(.header__nav-item--child02)::before {
    content: "";
    display: block;
    width: 14px;
    height: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #848484; /* Old browsers */
    background: -moz-linear-gradient(
      left,
      #848484 50%,
      #faeb00 50%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      #848484 50%,
      #faeb00 50%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to right,
      #848484 50%,
      #faeb00 50%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#848484', endColorstr='#faeb00',GradientType=1 ); /* IE6-9 */
  }
  .header__nav-item--child {
    margin-left: 20px;
    margin-right: 15px;
    padding-bottom: 10px;
  }
  .header__nav-item--child .header__nav-link {
    padding: 14px 15px;
    background-color: #505050;
    border-top: 1px solid #000000;
  }
  .header__nav-link {
    display: block;
    width: 100%;
    padding: 20px 15px 20px 25px;
    text-align: left;
    position: relative;
    width: 100%;
  }
  .header__nav-item--child .header__nav-link02 {
    width: calc(100% - 20px);
    font-size: 11px;
    margin-left: 20px;
    background-color: #b3b3b3;
    color: #333;
    margin-right: 15px;
  }
  .header__nav-link::after {
    content: "\f054";
    font-family: fontawesome;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 35px;
    left: auto;
    margin: auto;
    height: 1em;
    line-height: 1;
    display: block;
  }
  .header__nav-item--child .header__nav-link::after {
    right: 20px;
  }
  .header__nav-link--tab::after {
    content: "\f08e";
  }

  .header__nav-btn {
    width: 200px;
    height: 40px;
    background: url(/sp/foreign/common/img/header/btn_01.jpg) no-repeat center / cover;
    display: block;
    margin: 15px auto 0;
  }
  .header__nav-close {
    width: 82px;
    height: 16.5px;
    background: url(/sp/foreign/common/img/header/close.png) no-repeat center / cover;
    margin: 25px auto 0;
  }
  .header__nav-item--parent .header__nav-link {
    pointer-events: none;
  }
  .header__nav-item--parent .header__nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 16px;
    height: 16px;
    margin: auto;
    border-radius: 50%;
    background: #faeb00;
  }
  .header__nav-item--parent .header__nav-link span {
    display: block;
    width: 100%;
  }
  .header__nav-item--parent .header__nav-link span::before,
  .header__nav-item--parent .header__nav-link span::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    width: 10px;
    height: 2px;
    margin: auto;
    background-color: #848484;
  }
  .header__nav-item--parent .header__nav-link span::after {
    transform: rotate(90deg);
    transition: 0.3s ease;
  }
  .header__nav-item--child {
    display: none;
  }
  .header__nav-item--child.opened {
    display: block;
  }
  .header__nav-item--parent.opened .header__nav-link span::after {
    transform: rotate(180deg);
  }
  /*overlay*/
  .overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 130%;
    opacity: 0.5;
    background-color: #000;
  }

  /*------------------------------------------------
	main
	------------------------------------------------*/

  #main {
    margin-top: 50px;
  }

  /*------------------------------------------------
	page-top
	------------------------------------------------*/

  .pageTop a {
    right: 15px;
  }

  /*------------------------------------------------
	breadcrumb
	------------------------------------------------*/

  .breadcrumb {
    width: 100%;
    margin: 3px auto;
    padding: 0 15px;
  }
  .breadcrumb__list {
    justify-content: flex-start;
  }
  .breadcrumb__link {
    font-size: 10px;
  }
  .breadcrumb__link i {
    font-size: 12px;
  }

  /*------------------------------------------------
	footer
	------------------------------------------------*/
  #footer {
    padding-top: 40px;
  }
  .footer-in .footer-top,
  .footer-in .fbnr {
    width: 100%;
  }
  .footer-top {
    padding: 0 15px 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .fnav {
    display: none;
  }
  .footer-img {
    width: 120px;
    position: relative;
    top: -40px;
    right: 0;
    display: block;
    margin-bottom: -20px;
  }
  /* ------ option ------ */
  .fbnr {
    padding: 0 15px 30px;
  }
  .fbnr-item {
    width: calc((100% - 12px) / 2);
    margin-right: 12px;
    margin-bottom: 5px;
  }
  .fbnr-item:nth-child(1) {
    width: 235px;
    margin-left: auto;
    margin-right: auto;
  }
  .fbnr-item:nth-child(1) {
    margin-bottom: 10px;
  }
  .fbnr-item:nth-child(3),
  .fbnr-item:nth-child(5) {
    margin-right: 0;
  }
  /* ------ option ------ */
  .fbtm-in {
    width: 100%;
    padding: 9px 0 13px;
    display: block;
    height: auto;
  }
  .fbtm-txt {
    border-left: none;
    border-top: 1px solid #faeb00;
    padding: 11px 15px 13px;
    text-align: center;
  }
  .fbtm-txt__address {
    font-size: 10px;
    display: block;
    line-height: 1.6;
    padding-bottom: 0;
    text-align: center;
  }
  .fbtm-bnr__link {
    width: 200px;
    height: 40px;
    margin: 0 auto 12px;
  }
  .fbtm-bnr__link span::after {
    right: -20px;
    font-size: 10px;
  }
  .footer-copy {
    font-size: 10px;
    position: relative;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  /*------------------------------------------------
	not-found 404
	------------------------------------------------*/
}
