@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin-top: 125px !important;
  line-height: 1.5;
  min-width: 1530px;
  font-size: 1rem;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  background: #ffffff;
  color: #333333;
  word-wrap: break-word;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  body {
    min-width: 990px;
    font-size: 1rem;
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (max-width: 990px) {
  body {
    margin-top: 80px !important;
    margin-bottom: 40px !important;
    min-width: 320px;
    font-size: 1rem;
    -webkit-text-size-adjust: 100%;
  }
}

[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus {
  outline: none;
}

table a {
  word-break: break-all;
}

br {
  letter-spacing: 0;
}

a {
  color: #007ae5;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
a:hover { /*マウスをのせたとき*/
  color: #666666;
  text-decoration: underline;
}
a:active { /*マウスを押したとき*/
  color: #666666;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*************** Page Top ***************/
.go-top {
  position: fixed;
  z-index: 100000;
  bottom: 80px;
  right: 20px;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  opacity: 0;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .go-top {
    bottom: 100px;
    right: 10px;
  }
}
.go-top.is-show {
  opacity: 1;
}

.go-top a {
  white-space: nowrap;
  display: block;
  position: relative;
  color: #3db277;
  font-size: 0.75rem;
  text-align: center;
  text-decoration: none;
}
.go-top a span {
  font-size: 1rem;
}
.go-top a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-top: -10px;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  border-right: 2px solid #3db277;
  border-bottom: 2px solid #3db277;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.go-top a:hover {
  color: #333333;
  text-decoration: none;
}
.go-top a:hover:before {
  border-right-color: #333333;
  border-bottom-color: #333333;
}

.sns-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sns-btn-list__item {
  margin-left: 15px;
  line-height: 1;
}

select.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 30px;
  width: 200px;
  height: 50px;
  line-height: 40px;
  background-size: 10px 30px;
  background-position: right 10px center;
}
select.custom-select::-ms-expand {
  display: none;
}
select.custom-select.is-example1 {
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
  background-repeat: no-repeat;
}
select.custom-select.is-example2 {
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
  background-repeat: no-repeat;
}
select.custom-select.is-example3 {
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="0.7" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
  background-repeat: no-repeat;
}
select.custom-select.is-example4 {
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
  background-repeat: no-repeat;
}
select.custom-select.is-example5 {
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="1" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
  background-repeat: no-repeat;
}
select.custom-select.is-example6 {
  background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ff0000" fill-opacity="0.7" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
  background-repeat: no-repeat;
}

/*************** フォーム ***************/
*:-moz-placeholder-shown {
  color: #aaaaaa;
}
*:-ms-input-placeholder {
  color: #aaaaaa;
}
*:placeholder-shown {
  color: #aaaaaa;
}

*::-webkit-input-placeholder {
  color: #aaaaaa;
}

*:-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}

*::-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #aaaaaa;
}

button {
  font-family: YakuHanJPs, "Roboto", verdana, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  vertical-align: middle;
  cursor: pointer;
}

input[type=text],
input[type=password],
textarea,
select {
  padding: 10px 5px;
  line-height: 1.4;
  min-height: 46px;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  background: #fafafa;
  color: #111111;
  font-size: 1rem;
  font-family: YakuHanJPs, "Roboto", verdana, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type=text]:hover,
input[type=password]:hover,
textarea:hover,
select:hover {
  border-color: #888888;
  background: #ffffff;
  color: #333333;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border-color: #67CBDF;
  background: #ffffff;
  color: #333333;
  -webkit-box-shadow: 0 0 0 3px rgba(103, 203, 223, 0.2);
          box-shadow: 0 0 0 3px rgba(103, 203, 223, 0.2);
}
input[type=text]:disabled,
input[type=password]:disabled,
textarea:disabled,
select:disabled {
  border-color: #888888;
  background: #EBEBE4;
  color: #777777;
  cursor: not-allowed;
}

input[type=text],
input[type=password],
textarea {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  position: relative;
  top: -0.1em;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

select {
  max-width: 100%;
  height: 46px;
}

label {
  cursor: pointer;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, select, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

/* html5要素 */
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, dialog, figure, footer, header, time, picture,
hgroup, nav, section {
  display: block;
}

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

fieldset, img {
  border: 0;
  vertical-align: bottom;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
}

a {
  /*outline:none; アクセシビリティのためoutlineは消してはいけない*/
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*********************************************/
/* Utility */
/*********************************************/
/* clearfix */
.u-cl:before, .u-cl:after {
  content: " ";
  display: table;
}

.u-cl:after {
  clear: both;
}

.u-cl {
  *zoom: 1;
}

/* font関連 */
.u-bold {
  font-weight: bold !important;
}

.u-through {
  text-decoration: line-through;
}

.u-font-xs {
  font-size: 10px !important;
}

.u-font-ss {
  font-size: 12px !important;
}

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

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

.u-font-l {
  font-size: 21px !important;
}

.u-font-ll {
  font-size: 30px !important;
}

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

.u-mincho {
  font-family: YakuHanMPs, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
}

.u-mincho-noto {
  font-family: YakuHanMPs, "Noto Serif JP", serif;
}

.u-mincho-sawarabi {
  font-family: YakuHanMPs, "Sawarabi Mincho", serif;
}

.u-gothic-noto {
  font-family: YakuHanJPs, "Noto Sans Japanese", sans-serif;
}

.u-gothic-rounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* float */
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

/* text-align */
.u-align-left {
  text-align: left !important;
}

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

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

/* vertical-align */
.u-valign-top {
  vertical-align: top !important;
}

.u-valign-middle {
  vertical-align: middle !important;
}

.u-valign-bottom {
  vertical-align: bottom !important;
}

/* bottom-margin */
.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mbxs {
  margin-bottom: 5px !important;
}

.u-mbss {
  margin-bottom: 10px !important;
}

.u-mbs {
  margin-bottom: 15px !important;
}

.u-mbm {
  margin-bottom: 45px !important;
}

.u-mbl {
  margin-bottom: 60px !important;
}

.u-mbll {
  margin-bottom: 120px !important;
}

.u-mbxl {
  margin-bottom: 240px !important;
}

/* padding */
.u-plrs {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.u-plrm {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* 幅 */
.u-ws {
  width: 50px;
}

.u-wm {
  width: 100px;
}

.u-wl {
  width: 200px;
}

.u-w-half {
  width: 50%;
}

.u-w-max {
  width: 100%;
}

/* 色 */
.u-red {
  color: #eb0800;
}

.u-required {
  color: #eb0800;
} /* 必須 */
.u-date {
  color: #888888;
} /* 日付 */
.u-dpn {
  display: none;
}

.u-pc-only {
  display: block;
}

.u-sp-only {
  display: none;
}

img.u-pc-only {
  display: inline;
}

img.u-sp-only {
  display: none;
}

@media only screen and (max-width: 990px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: block;
  }
  img.u-pc-only {
    display: none;
  }
  img.u-sp-only {
    display: inline;
  }
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
/* opacity */
.u-opa a img,
.u-opa-img img,
.u-opa-box {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.u-opa a img:hover,
.u-opa-img img:hover,
.u-opa-box:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.u-spr {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  border: 0;
  cursor: pointer;
}

.u-spr::-moz-focus-inner {
  padding: 0;
  border: none;
}

.u-pre {
  padding: 15px;
  background: #333333;
  color: #ffffff;
}

/***** 画像 *****/
.u-img {
  margin-bottom: 15px;
}

/***** テキスト *****/
.u-txt {
  line-height: 1.8;
}

@media only screen and (max-width: 990px) {
  .u-list-txt {
    padding-left: 0;
  }
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
/* input画像ボタンにつける */
.u-input-img {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

.u-input-img:hover {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* inputテキストボタンにつける */
.u-input-txt {
  padding: 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.u-input-txt:hover {
  padding: 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  text-decoration: underline;
}

.u-hidden {
  overflow: hidden;
}

.u-overbg {
  margin-left: -500%;
  margin-right: -500%;
  padding-left: 500%;
  padding-right: 500%;
}

.u-overframe {
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
}

/***** iframeの高さをレスポンシブ対応 *****/
.iframe-content {
  position: relative;
  width: 100%;
  padding: 56.25% 0 0 0;
}
.iframe-content iframe, .iframe-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.iframe-content img {
  -o-object-fit: cover;
     object-fit: cover;
}
.iframe-content .lazy-iframe {
  cursor: pointer;
}
.iframe-content .lazy-iframe img {
  z-index: 1;
}
.iframe-content .lazy-iframe .play-btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.iframe-content .lazy-iframe .play-btn:hover .play-btn-icon .st0 {
  fill: #ff0000;
  fill-opacity: 1;
}
.iframe-content .lazy-iframe .play-btn-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -21px;
  z-index: 50;
}
.iframe-content .lazy-iframe.is-active iframe {
  z-index: 100;
}

.play-btn {
  width: 64px;
  height: 43px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.play-btn-icon {
  width: 64px;
  height: 43px;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
}
.play-btn-icon .st0 {
  fill: #212121;
  fill-opacity: 0.8;
}
.play-btn-icon .st1 {
  fill: #ffffff;
  fill-opacity: 1;
}

/***** 見た目を隠したいとき *****/
.u-visually-hidden {
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
  border: 0;
  padding: 0;
  width: 4px;
  height: 4px;
}

/*************** パンくず ***************/
.breadcrumbs {
  padding: 10px 0;
  font-size: 12px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .breadcrumbs {
    padding: 7px 0;
    font-size: 10px;
  }
}

.breadcrumbs-list {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
.breadcrumbs-list__item {
  position: relative;
  display: inline-block;
  margin-right: 25px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .breadcrumbs-list__item {
    margin-top: 3px;
    margin-bottom: 3px;
  }
}
.breadcrumbs-list__item a {
  color: #888888;
}
.breadcrumbs-list__item:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.breadcrumbs-list__item:last-child {
  margin-right: 0;
}
.breadcrumbs-list__item:last-child a {
  color: #393939;
}
.breadcrumbs-list__item:last-child:before {
  content: none;
}

#top .breadcrumbs-list__item:before {
  content: none;
}

/*************** フッター ***************/
#l-footer + iframe {
  display: none;
}

.l-footer-copy {
  padding: 10px 15px;
  color: #ffffff;
  background-color: #a8d65f;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}

.l-footer-main {
  padding: 30px 0 60px 0;
  background: #f4f4f4;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-main {
    padding: 60px 0 30px 0;
  }
}

.l-footer-loan-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 65px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-loan-navi {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 990px) {
  .l-footer-loan-navi {
    display: block;
    margin: 0 auto;
    margin-bottom: 60px;
    max-width: 430px;
  }
}

.l-footer-loan-navi-ttl {
  display: inline-block;
  position: relative;
  padding: 5px 28px;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #ffffff;
  background-color: #3db277;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-loan-navi-ttl {
    padding: 5px 30px;
  }
}
@media only screen and (max-width: 990px) {
  .l-footer-loan-navi-ttl {
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
}
.l-footer-loan-navi-ttl:before {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 24px 15px;
  border-color: transparent transparent transparent #3db277;
}

.l-footer-loan-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-loan-navi-list {
    display: block;
    padding-left: 30px;
  }
}

.l-footer-loan-navi-list__item {
  position: relative;
  padding: 0 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-loan-navi-list__item {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 990px) {
  .l-footer-loan-navi-list__item {
    margin-bottom: 30px;
    padding: 0;
  }
  .l-footer-loan-navi-list__item:last-child {
    margin-bottom: 0;
  }
}
.l-footer-loan-navi-list__item:before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 1px;
  height: 30px;
  background: #333333;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-loan-navi-list__item:before {
    top: 8px;
    height: 15px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@media only screen and (max-width: 990px) {
  .l-footer-loan-navi-list__item:before {
    content: none;
  }
}
.l-footer-loan-navi-list__item:last-child:before {
  content: none;
}

.l-footer-loan-navi-list__link {
  color: #333333;
  font-size: 1.5rem;
  letter-spacing: 5px;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-loan-navi-list__link {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 990px) {
  .l-footer-loan-navi-list__link {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}
.l-footer-loan-navi-list__link:hover {
  color: #3db277;
}

.l-footer-navi {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-navi {
    margin-bottom: 60px;
  }
}

.l-footer-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-navi-list {
    display: block;
    margin: 0 auto;
    padding-left: 30px;
    max-width: 430px;
  }
}

.l-footer-navi-list__item {
  position: relative;
  padding: 0 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-navi-list__item {
    margin-bottom: 30px;
    padding: 0;
  }
}
.l-footer-navi-list__item:before {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 1px;
  height: 38px;
  background: #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-navi-list__item:before {
    content: none;
  }
}
.l-footer-navi-list__item:first-child:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 1px;
  height: 38px;
  background: #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-navi-list__item:first-child:after {
    content: none;
  }
}

.l-footer-navi-list__link {
  display: block;
  color: #333333;
  font-size: 1.25rem;
  letter-spacing: 5px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-navi-list__link {
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
  }
}
.l-footer-navi-list__link:hover {
  color: #333333;
}

.l-footer-main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-main-wrap {
    display: block;
  }
}

.l-footer-logo {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-logo {
    margin: 0 auto;
    max-width: 495px;
  }
}
.l-footer-logo img {
  width: 500px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-logo img {
    width: 360px;
  }
}
@media only screen and (max-width: 990px) {
  .l-footer-logo img {
    width: 290px;
  }
}

.l-footer-info {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-info {
    display: none;
  }
}

.l-footer-info-txt {
  padding-left: 45px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  letter-spacing: 3px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-info-txt {
    padding-left: 0;
    font-size: 1rem;
  }
}

.l-footer-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-footer-info-list {
    display: block;
  }
}

.l-footer-info-list__tel,
.l-footer-info-list__contact {
  display: inline-block;
  border: 3px solid #3db277;
  font-weight: bold;
  letter-spacing: 3px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-info-list__tel,
  .l-footer-info-list__contact {
    padding: 5px 15px;
  }
}

.l-footer-info-list__tel {
  padding: 12px 15px;
  padding-left: 70px;
  color: #ffffff;
  background-color: #3db277;
  background-image: url(../images/header-tel-icon-white.svg);
  background-size: 42px;
  background-repeat: no-repeat;
  background-position: left 15px center;
  font-size: 1.75rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-info-list__tel {
    font-size: 1.5rem;
  }
}
.l-footer-info-list__tel:hover {
  color: #ffffff;
}

.l-footer-info-list__contact {
  padding: 15px;
  color: #3db277;
  background-color: #ffffff;
  font-size: 1.5rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .l-footer-info-list__contact {
    font-size: 1.25rem;
  }
}
.l-footer-info-list__contact:hover {
  color: #3db277;
}

.l-copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.75rem;
  text-align: center;
}

/*************** ボトム バナー ***************/
.l-bottom-bnr {
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 1px solid #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-bottom-bnr {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}

.l-bottom-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-bottom-bnr-list {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

.l-bottom-bnr-list__item {
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-bottom-bnr-list__item {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    width: auto;
    text-align: center;
  }
}

.l-bottom-bnr-list__img {
  margin-bottom: 5px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-bottom-bnr-list__img img {
    max-width: 330px;
  }
}

/*************** 固定フッター ***************/
.l-fix-link {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 100;
  color: #ffffff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-fix-link {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

.l-fix-link-list {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-fix-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-fix-link-tel {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-fix-link-tel {
    width: 50%;
  }
}

.l-fix-link-contact {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-fix-link-contact {
    width: 50%;
  }
}

.l-fix-link-tel__link,
.l-fix-link-contact__link {
  display: block;
  padding: 15px;
  width: 57px;
  color: #ffffff;
  font-size: 1.125rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  word-break: keep-all;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-fix-link-tel__link,
  .l-fix-link-contact__link {
    padding: 15px;
    width: auto;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-orientation: initial;
    word-break: initial;
    font-size: 0.9375rem;
    text-align: center;
  }
}
.l-fix-link-tel__link:hover,
.l-fix-link-contact__link:hover {
  color: #ffffff;
  text-decoration: none;
}

.l-fix-link-tel__link {
  background: #a8d65f;
}
.l-fix-link-tel__link:hover {
  background: #b5dc77;
}
.l-fix-link-tel__link span {
  display: inline-block;
  padding-top: 30px;
  background-image: url(../images/header-tel-icon-white.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center top;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-fix-link-tel__link span {
    padding-top: 0;
    padding-left: 22px;
    background-size: 16px;
    background-position: left center;
  }
}

.l-fix-link-contact__link {
  background: #f9d128;
}
.l-fix-link-contact__link:hover {
  background: #fad950;
}
.l-fix-link-contact__link i {
  margin-bottom: -15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-fix-link-contact__link i {
    margin-bottom: 0;
  }
}

.l-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.l-row.is-no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.l-row.is-no-gutter > [class^=l-col-], .l-row.is-no-gutter > [class*=" l-col-"] {
  padding-right: 0;
  padding-left: 0;
}
.l-row.is-s {
  margin-left: -5px;
  margin-right: -5px;
}
.l-row.is-s > [class^=l-col-], .l-row.is-s > [class*=" l-col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.l-row.is-m {
  margin-left: -15px;
  margin-right: -15px;
}
.l-row.is-m > [class^=l-col-], .l-row.is-m > [class*=" l-col-"] {
  padding-right: 15px;
  padding-left: 15px;
}
.l-row.is-l {
  margin-left: -30px;
  margin-right: -30px;
}
.l-row.is-l > [class^=l-col-], .l-row.is-l > [class*=" l-col-"] {
  padding-right: 30px;
  padding-left: 30px;
}

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

.l-col-12 {
  width: 100%;
}

.l-col-11 {
  width: 91.66666667%;
}

.l-col-10 {
  width: 83.33333333%;
}

.l-col-9 {
  width: 75%;
}

.l-col-8 {
  width: 66.66666667%;
}

.l-col-7 {
  width: 58.33333333%;
}

.l-col-6 {
  width: 50%;
}

.l-col-5 {
  width: 41.66666667%;
}

.l-col-4 {
  width: 33.33333333%;
}

.l-col-3 {
  width: 25%;
}

.l-col-2 {
  width: 16.66666667%;
}

.l-col-1 {
  width: 8.33333333%;
}

@media only screen and (max-width: 1530px) {
  .l-col-tb-12 {
    width: 100%;
  }
  .l-col-tb-11 {
    width: 91.66666667%;
  }
  .l-col-tb-10 {
    width: 83.33333333%;
  }
  .l-col-tb-9 {
    width: 75%;
  }
  .l-col-tb-8 {
    width: 66.66666667%;
  }
  .l-col-tb-7 {
    width: 58.33333333%;
  }
  .l-col-tb-6 {
    width: 50%;
  }
  .l-col-tb-5 {
    width: 41.66666667%;
  }
  .l-col-tb-4 {
    width: 33.33333333%;
  }
  .l-col-tb-3 {
    width: 25%;
  }
  .l-col-tb-2 {
    width: 16.66666667%;
  }
  .l-col-tb-1 {
    width: 8.33333333%;
  }
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
@media only screen and (max-width: 990px) {
  .l-col-sp-12 {
    width: 100%;
  }
  .l-col-sp-11 {
    width: 91.66666667%;
  }
  .l-col-sp-10 {
    width: 83.33333333%;
  }
  .l-col-sp-9 {
    width: 75%;
  }
  .l-col-sp-8 {
    width: 66.66666667%;
  }
  .l-col-sp-7 {
    width: 58.33333333%;
  }
  .l-col-sp-6 {
    width: 50%;
  }
  .l-col-sp-5 {
    width: 41.66666667%;
  }
  .l-col-sp-4 {
    width: 33.33333333%;
  }
  .l-col-sp-3 {
    width: 25%;
  }
  .l-col-sp-2 {
    width: 16.66666667%;
  }
  .l-col-sp-1 {
    width: 8.33333333%;
  }
}
/*
	@if $media-width == tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
			@content;
		}
	}
	@if $media-width == min-tb {
		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
			@content;
		}
	}
	@if $media-width == tb-vert {
		@media only screen and (max-width: $bp-tb-vert) {
			@content;
		}
	}
	@if $media-width == min-tb-vert {
		@media only screen and (min-width: $bp-min-tb-vert) {
			@content;
		}
	}
	@if $media-width == tb-hor {
		@media only screen and (max-width: $bp-tb-hor) {
			@content;
		}
	}
	@if $media-width == min-tb-hor {
		@media only screen and (min-width: $bp-min-tb-hor) {
			@content;
		}
	}
*/
/*************** ヘッダー ***************/
#l-header {
  position: fixed;
  top: 0;
  padding: 15px 0;
  width: 100%;
  border-top: 5px solid #3db277;
  background-color: #ffffff;
  z-index: 999;
}

.l-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-main {
    display: block;
    height: auto;
    position: relative;
  }
}

.l-header-main__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1560px) {
  .l-header-main__logo img {
    width: 340px;
  }
}
@media only screen and (max-width: 1300px) {
  .l-header-main__logo img {
    width: 240px;
  }
}
@media only screen and (max-width: 990px) {
  .l-header-main__logo {
    height: 45px;
  }
  .l-header-main__logo img {
    width: 240px;
  }
}

/*************** メインナビ ***************/
.l-main-navi-btn {
  display: none;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-btn {
    display: block;
    position: absolute;
    top: 18px;
    right: 0;
    padding: 0;
    border: 0;
    background: transparent;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .l-main-navi-btn:before {
    content: "menu";
    position: absolute;
    top: -18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #3db277;
    font-size: 0.625rem;
    letter-spacing: 2px;
    font-weight: bold;
  }
}

.l-main-navi {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi {
    margin: 0;
    width: 100%;
  }
}

.l-main-navi .l-container {
  position: relative;
}

.l-main-navi-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 90px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-wrap {
    display: none;
    position: relative;
    z-index: 1;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 0;
    padding-bottom: 15px;
    height: 100vh !important;
    background: #ffffff;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 991px) {
  .l-main-navi-wrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.l-main-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  margin-right: 390px;
  padding-left: 120px;
  width: 100%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1900px) {
  .l-main-navi-list {
    margin-right: 370px;
    padding-left: 60px;
  }
}
@media only screen and (max-width: 1560px) {
  .l-main-navi-list {
    margin-right: 280px;
    padding-left: 45px;
  }
}
@media only screen and (max-width: 1300px) {
  .l-main-navi-list {
    margin-right: 230px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1080px) {
  .l-main-navi-list {
    margin-right: 215px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list {
    display: block;
    margin-right: 0;
    padding-left: 0;
    border-top: 1px solid #cccccc;
  }
}

.l-main-navi-list__item {
  min-width: 60px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__item {
    min-width: 0;
    background-color: #f4f4f4;
    text-align: left;
  }
  .l-main-navi-list__item:nth-child(2n) {
    background-color: #ffffff;
  }
}
.l-main-navi-list__item:first-child {
  margin-left: 0;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__item:first-child {
    padding-top: 15px;
  }
}

.l-main-navi-list__link {
  display: block;
  position: relative;
  color: #333333;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1560px) {
  .l-main-navi-list__link {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 3px 15px;
    font-size: 1rem;
  }
  .l-main-navi-list__link:after {
    display: block;
    content: "";
    margin-top: 0px;
    margin-left: auto;
    width: 15px;
    height: 15px;
    border-right: 2px solid #cccccc;
    border-bottom: 2px solid #cccccc;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.l-main-navi-list__link.is-bottom {
  padding-bottom: 22px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1560px) {
  .l-main-navi-list__link.is-bottom {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__link.is-bottom {
    padding-bottom: 0;
  }
}
.l-main-navi-list__link:hover, .l-main-navi-list__link.is-on {
  color: #333333;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__link:hover, .l-main-navi-list__link.is-on {
    color: #333333;
    text-decoration: none;
  }
  .l-main-navi-list__link:hover:after, .l-main-navi-list__link.is-on:after {
    border-color: #3db277;
  }
}
.l-main-navi-list__link:hover span, .l-main-navi-list__link.is-on span {
  color: #3db277;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__link:hover span, .l-main-navi-list__link.is-on span {
    color: #333333;
  }
}

.l-main-navi-list__main {
  display: block;
  padding-top: 48px;
  background-position: center top;
  background-repeat: no-repeat;
  white-space: nowrap;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__main {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 60px;
    background-position: left center;
  }
}
.l-main-navi-list__main.is-01 {
  background-image: url(../images/header-icon01.svg);
  background-size: 55px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1300px) {
  .l-main-navi-list__main.is-01 {
    background-size: 50px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__main.is-01 {
    background-size: 40px;
  }
}
.l-main-navi-list__main.is-02 {
  background-image: url(../images/header-icon02.svg);
  background-size: 42px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1300px) {
  .l-main-navi-list__main.is-02 {
    background-size: 37px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__main.is-02 {
    background-size: 30px;
  }
}
.l-main-navi-list__main.is-03 {
  background-image: url(../images/header-icon03.svg);
  background-size: 62px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1300px) {
  .l-main-navi-list__main.is-03 {
    background-size: 57px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__main.is-03 {
    background-size: 46px;
  }
}
.l-main-navi-list__main.is-04 {
  background-image: url(../images/header-icon04.svg);
  background-size: 48px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1300px) {
  .l-main-navi-list__main.is-04 {
    background-size: 43px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__main.is-04 {
    background-size: 35px;
  }
}
.l-main-navi-list__main.is-05 {
  background-image: url(../images/header-icon05.svg);
  background-size: 48px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1300px) {
  .l-main-navi-list__main.is-05 {
    background-size: 43px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__main.is-05 {
    background-size: 36px;
  }
}
.l-main-navi-list__main.is-06 {
  background-image: url(../images/header-icon06.svg);
  background-size: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1300px) {
  .l-main-navi-list__main.is-06 {
    background-size: 43px;
  }
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__main.is-06 {
    background-size: 36px;
  }
}

.l-main-navi-list__sub {
  display: block;
  margin-top: 2px;
  font-size: 0.625rem;
  color: #777777;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-list__sub {
    margin-top: 0;
    margin-left: 15px;
    font-size: 0.75rem;
  }
}

.l-main-navi-btn-close {
  display: none;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-main-navi-btn-close {
    display: block;
    margin: 30px auto 0 auto;
    padding: 10px 15px;
    width: 200px;
    border-radius: 23px;
    border: none;
    background: #f4f4f4;
    color: #333333;
    text-align: center;
  }
  .l-main-navi-btn-close img {
    margin-right: 10px;
    margin-bottom: 2px;
    width: 12px;
  }
}

/*************** ヘルプナビ ***************/
.l-help-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -18px;
  right: 165px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-help-navi-list {
    position: static;
    display: block;
  }
}

.l-help-navi-list__item {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.75rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-help-navi-list__item {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #cccccc;
    font-size: 0.875rem;
  }
}
.l-help-navi-list__item:before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 14px;
  background: #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-help-navi-list__item:before {
    content: none;
  }
}
.l-help-navi-list__item:first-child:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 14px;
  background: #cccccc;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-help-navi-list__item:first-child:after {
    content: none;
  }
}

.l-help-navi-list__link {
  color: #777777;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-help-navi-list__link {
    display: block;
    padding: 15px 15px;
    color: #555555;
  }
  .l-help-navi-list__link:hover {
    text-decoration: none;
  }
}

/*************** 電話 ***************/
.l-header-tel {
  position: absolute;
  top: 5px;
  right: 0px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1560px) {
  .l-header-tel {
    top: 15px;
  }
}
@media only screen and (max-width: 990px) {
  .l-header-tel {
    display: none;
  }
}

.l-header-tel-txt {
  display: block;
  letter-spacing: 0;
  color: #3db277;
}
@media only screen and (max-width: 1560px) {
  .l-header-tel-txt {
    margin-bottom: 5px;
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 1300px) {
  .l-header-tel-txt {
    font-size: 0.625rem;
  }
}

.l-header-tel-txt-small {
  display: none;
}

.l-header-tel__link {
  padding-left: 60px;
  color: #3db277;
  font-size: 2.25rem;
  font-weight: bold;
  font-family: YakuHanJPs, "Roboto", verdana, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.125rem;
  background-image: url(../images/header-tel-icon.svg);
  background-size: 45px;
  background-repeat: no-repeat;
  background-position: left center;
}
@media only screen and (max-width: 1560px) {
  .l-header-tel__link {
    padding-left: 50px;
    font-size: 1.5rem;
    background-size: 40px;
    letter-spacing: 0.1875rem;
  }
}
@media only screen and (max-width: 1300px) {
  .l-header-tel__link {
    padding-left: 40px;
    letter-spacing: 0px;
    background-size: 30px;
    letter-spacing: 0.0625rem;
  }
}
.l-header-tel__link:hover {
  text-decoration: none;
}

/*************** カート ***************/
.l-header-cart {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 0.875rem;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-cart {
    position: static;
    margin: 30px 15px;
  }
}

.l-header-cart__link {
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-cart__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 45px;
    border: 1px solid #3db277;
    border-radius: 23px;
    font-size: 1.125rem;
    background: #3db277;
    color: #ffffff;
  }
  .l-header-cart__link:hover {
    text-decoration: none;
    background: #007ae5;
    color: #ffffff;
  }
  .l-header-cart__link i {
    margin-right: 15px;
  }
}
.l-header-cart__link:hover {
  text-decoration: none;
}

.l-header-cart__item {
  display: inline-block;
  margin-left: 5px;
  border-radius: 5px;
  min-width: 20px;
  line-height: 20px;
  background: #3db277;
  color: #ffffff;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-cart__item {
    background: #ffffff;
    color: #3db277;
  }
}

/*************** ドロップダウンメニュー ***************/
.menu__single {
  position: relative;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
.menu__single:hover .menu__second-level {
  top: 95px;
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 990px) {
  .menu__single .l-main-navi-list__link:after {
    content: none;
  }
  .menu__single .l-main-navi-list__link:hover {
    cursor: auto;
  }
}

.menu__second-level {
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 225px;
  border: 1px solid #3db277;
  background: #f4f4f4;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .menu__second-level {
    position: static;
    padding-bottom: 15px;
    width: 100%;
    border: none;
    visibility: visible;
    opacity: 1;
    -webkit-transform: inherit;
            transform: inherit;
  }
  .menu__second-level.is-white {
    background: #ffffff;
  }
}
.menu__second-level:hover .menu__second-level {
  top: 70px;
  visibility: visible;
  opacity: 1;
}
.menu__second-level li {
  border-top: 1px solid #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .menu__second-level li {
    border-top: none;
  }
}
.menu__second-level li:first-child {
  border-top: none;
}

.menu__second-level__link {
  display: block;
  padding: 8px 0;
  color: #3db277;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .menu__second-level__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 10px 15px 10px 90px;
    color: #333333;
    font-weight: normal;
  }
  .menu__second-level__link:before {
    content: "-";
    position: absolute;
    top: 10px;
    left: 75px;
  }
  .menu__second-level__link:after {
    display: block;
    content: "";
    margin-top: 0px;
    margin-left: auto;
    width: 15px;
    height: 15px;
    border-right: 2px solid #cccccc;
    border-bottom: 2px solid #cccccc;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.menu__second-level__link span {
  display: block;
  color: #333333;
  font-size: 0.75rem;
  font-weight: normal;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .menu__second-level__link span {
    display: none;
  }
}
.menu__second-level__link:hover {
  color: #ffffff;
  background-color: #3db277;
  text-decoration: none;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .menu__second-level__link:hover {
    color: #3db277;
    background-color: inherit;
  }
  .menu__second-level__link:hover:after {
    border-color: #3db277;
  }
}
.menu__second-level__link:hover span {
  color: #ffffff;
}

/***** 物件情報 モーダル *****/
.l-dropdown-navi-modal {
  pointer-events: none;
}
.l-dropdown-navi-modal .mfp-close {
  color: #ffffff !important;
}

.l-dropdown-navi-modal__ttl {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1.875rem;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-dropdown-navi-modal__ttl {
    font-size: 1.375rem;
  }
}

.l-dropdown-navi-modal__img {
  margin-bottom: 30px;
  text-align: center;
}
.l-dropdown-navi-modal__img img {
  max-height: 50vh;
}

.l-dropdown-navi-modal__body {
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}

.l-dropdown-navi-modal__btn {
  text-align: center;
}
.l-dropdown-navi-modal__btn .c-btn {
  pointer-events: all;
}

/*************** コンテンツレイアウト ***************/
.l-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-container {
    width: 100%;
    min-width: 320px;
  }
}
@media only screen and (min-width: 991px) {
  .l-container {
    width: 990px;
  }
}
@media only screen and (min-width: 1531px) {
  .l-container {
    width: 1020px;
  }
}

.l-header-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    min-width: 320px;
  }
}

.l-wide-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-wide-container {
    width: 100%;
    min-width: 320px;
  }
}
@media only screen and (min-width: 991px) {
  .l-wide-container {
    width: 990px;
  }
}
@media only screen and (min-width: 1531px) {
  .l-wide-container {
    width: 1530px;
  }
}

.l-middle-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-middle-container {
    width: 100%;
    min-width: 320px;
  }
}
@media only screen and (min-width: 991px) {
  .l-middle-container {
    width: 990px;
  }
}
@media only screen and (min-width: 1531px) {
  .l-middle-container {
    width: 1230px;
  }
}

@media (orientation: portrait) {
  .l-main {
    min-height: 800px;
    /*
    	@if $media-width == tb {
    		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
    		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
    		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
    			@content;
    		}
    	}
    	@if $media-width == min-tb {
    		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
    		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
    		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
    			@content;
    		}
    	}
    	@if $media-width == tb-vert {
    		@media only screen and (max-width: $bp-tb-vert) {
    			@content;
    		}
    	}
    	@if $media-width == min-tb-vert {
    		@media only screen and (min-width: $bp-min-tb-vert) {
    			@content;
    		}
    	}
    	@if $media-width == tb-hor {
    		@media only screen and (max-width: $bp-tb-hor) {
    			@content;
    		}
    	}
    	@if $media-width == min-tb-hor {
    		@media only screen and (min-width: $bp-min-tb-hor) {
    			@content;
    		}
    	}
    */
  }
}
@media only screen and (orientation: portrait) and (max-width: 990px) {
  .l-main {
    min-height: inherit;
  }
}
.l-main {
  min-height: 600px;
}

.l-contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 990px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-contents-wrap {
    display: block;
  }
}

.l-contents-side {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 165px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-contents-side {
    margin-right: 0;
    width: auto;
  }
}

.l-contents-main {
  width: 780px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-contents-main {
    width: auto;
  }
}

/***** フルサイズコンテンツ(スタイルガイドページ) *****/
.l-full-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #cccccc;
  min-width: 1290px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-full-container {
    display: block;
    min-width: inherit;
  }
}

.l-full-container__side {
  padding: 30px;
  width: 240px;
  background: #f5f5f5;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-full-container__side {
    width: auto;
  }
}

.l-full-container__main {
  padding: 0 30px;
  padding-top: 30px;
  width: 1050px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-full-container__main {
    padding: 0 15px;
    width: auto;
  }
}

/*************** コンテンツ間の余白 ***************/
.l-contents {
  padding-top: 60px;
  padding-bottom: 90px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-contents {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}
.l-contents.is-bg {
  background: #f4f4f4;
}
.l-contents.is-border {
  border-top: 1px solid #cccccc;
}
.l-contents .l-contents-box:last-child {
  margin-bottom: 0;
}

.l-contents-box {
  margin-bottom: 60px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-contents-box {
    margin-bottom: 45px;
  }
}

/*************** ログイン中 ***************/
.l-header-login-now {
  overflow: hidden;
  padding: 3px 0;
  font-size: 0.875rem;
  background: #2b991f;
  color: #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-login-now {
    font-size: 0.75rem;
  }
}
.l-header-login-now a {
  color: #ffffff;
  text-decoration: underline;
}

.l-header-login-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-login-message {
    display: block;
  }
}

.l-header-login-message__btn {
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-header-login-message__btn {
    float: right;
  }
}
.l-header-login-message__btn:hover {
  text-decoration: underline;
}

/*************** サイド ***************/
.l-side-bnr-list__item {
  margin-bottom: 15px;
}

.l-side-box {
  margin-bottom: 45px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-side-box {
    margin-bottom: 30px;
  }
}

.l-side-ttl {
  margin-bottom: 20px;
  font-size: 15px;
  color: #000000;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-side-ttl {
    margin-bottom: 10px;
  }
}

.l-side-list__item {
  position: relative;
  margin-bottom: 20px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-side-list__item {
    margin-bottom: 2px;
  }
}

.l-side-list__link {
  color: #696969;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-side-list__link {
    display: block;
    padding: 11px 15px;
    background: #fafafa;
    color: #696969;
  }
  .l-side-list__link:hover {
    background: #f0f0f0;
    text-decoration: none;
  }
}
.l-side-list__link:before {
  content: "- ";
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-side-list__link:before {
    content: none;
  }
}

/*************** スタイルガイド サイドナビ ***************/
.c-side-index-list__item {
  margin-bottom: 30px;
}

.c-side-index-list__link {
  display: block;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  background: transparent;
}

.c-side-index-sub-list {
  margin-top: 10px;
}

.c-side-index-sub-list__item {
  margin-bottom: 5px;
}

.c-side-index-sub-list__link {
  display: block;
  padding: 5px 10px;
  font-size: 0.875rem;
  border-radius: 5px;
}
.c-side-index-sub-list__link.is-current {
  background: #fafafa;
  font-weight: bold;
}
.c-side-index-sub-list__link:hover {
  background: #fafafa;
  text-decoration: none;
}

/**************************************************/
/* ヘッダー画像 */
/**************************************************/
.second-header-visual-bg {
  position: relative;
  padding: 0;
  padding-top: 260px;
  width: 100%;
  height: 555px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
  background-position: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg {
    height: 300px;
    padding-top: 150px;
  }
}
.second-header-visual-bg.is-leaseback {
  background-image: url(../images/secound-img-leaseback.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-leaseback {
    background-image: url(../images/secound-img-leaseback_sp.jpg);
  }
}
.second-header-visual-bg.is-sale {
  background-image: url(../images/secound-img-sale.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-sale {
    background-image: url(../images/secound-img-sale_sp.jpg);
  }
}
.second-header-visual-bg.is-buyback {
  background-image: url(../images/secound-img-buyback.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-buyback {
    background-image: url(../images/secound-img-buyback_sp.jpg);
  }
}
.second-header-visual-bg.is-case {
  background-image: url(../images/secound-img-case.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-case {
    background-image: url(../images/secound-img-case_sp.jpg);
  }
}
.second-header-visual-bg.is-company {
  background-image: url(../images/secound-img-company.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-company {
    background-image: url(../images/secound-img-company_sp.jpg);
  }
}
.second-header-visual-bg.is-news {
  background-image: url(../images/secound-img-news.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-news {
    background-image: url(../images/secound-img-news_sp.jpg);
  }
}
.second-header-visual-bg.is-faq {
  background-image: url(../images/secound-img-faq.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-faq {
    background-image: url(../images/secound-img-faq_sp.jpg);
  }
}
.second-header-visual-bg.is-contact {
  background-image: url(../images/secound-img-contact.jpg);
}
.second-header-visual-bg.is-privacy {
  background-image: url(../images/secound-img-privacy_sp.jpg);
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-header-visual-bg.is-privacy {
    background-image: url(../images/secound-img-privacy_sp.jpg);
  }
}

.second-header-visual-ttl {
  display: inline-block;
  padding: 20px 30px;
  min-width: 600px;
  font-weight: bold;
  font-size: 2.25rem;
  line-height: 3.75rem;
  background-color: #ffffff;
  font-weight: bold;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 5px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
.second-header-visual-ttl span {
  display: block;
  font-size: 1.25rem;
  line-height: 2.5rem;
  letter-spacing: 3px;
  color: #3db277;
}
@media only screen and (max-width: 990px) {
  .second-header-visual-ttl {
    min-width: 290px;
    font-size: 1.5rem;
    line-height: 1.875rem;
    letter-spacing: 3px;
  }
  .second-header-visual-ttl span {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: 2px;
  }
}

.btn-more {
  margin-top: 60px;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .btn-more {
    margin-top: 45px;
  }
}

.top-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(255, 255, 255, 0)), color-stop(70%, #ffe98f));
  background: linear-gradient(rgba(255, 255, 255, 0) 70%, #ffe98f 70%);
}

.bg-border {
  background-color: #fdfffa;
  background-image: repeating-linear-gradient(-55deg, #f4fcef, #f4fcef 5px, transparent 0, transparent 10px);
}

/**************************************************/
/* 詳細 */
/**************************************************/
.detail-article {
  margin-bottom: 120px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .detail-article {
    margin-bottom: 60px;
  }
}

.detail-main {
  margin-bottom: 90px;
}

.detail-box {
  margin-bottom: 90px;
}

.detail-img {
  margin-bottom: 30px;
}

.detail-body {
  margin-bottom: 30px;
  line-height: 1.8;
}

/**************************************************/
/* ボタン類 */
/**************************************************/
.l-second-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-second-btn-wrap {
    display: block;
  }
}
.l-second-btn-wrap .btn-more {
  padding: 15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .l-second-btn-wrap .btn-more {
    margin: 0;
    margin-bottom: 15px;
    padding: 0;
  }
}

/**************************************************/
/* PDF */
/**************************************************/
.pdf-desc-text {
  padding-bottom: 10px;
}

.js-download-form {
  margin-bottom: 30px;
}

/**************************************************/
/* 簡易ログイン */
/**************************************************/
.second-login {
  padding-top: 90px;
  font-family: YakuHanMPs, "Noto Serif JP", serif;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-login {
    padding: 0 15px;
    padding-top: 15px;
  }
}

.second-login-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 15px;
  width: 100%;
}

.second-login-form-ttl {
  width: 120px;
  font-size: 1rem;
  text-align: left;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .second-login-form-ttl {
    width: 90px;
    font-size: 0.875rem;
  }
}

.second-login-form {
  width: 360px;
}

/***** TOP 各プラン メリット *****/
.top-merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-merit-list {
    display: block;
    margin: 0;
  }
}

.top-merit-list__item {
  padding: 0 15px;
  width: 33.333%;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 990px) {
  .top-merit-list__item {
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 0;
    max-width: 380px;
    width: auto;
  }
}

.top-merit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 15px;
  border-radius: 10px;
  color: #ffffff;
  background-color: #a8d65f;
  letter-spacing: 0;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-merit-wrap {
    padding: 18px 13px;
  }
}

.top-merit-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-right: 1px solid #ffffff;
  font-size: 2.75rem;
  font-weight: bold;
  text-align: center;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-merit-num {
    padding-right: 13px;
  }
}
.top-merit-num span {
  font-size: 0.75rem;
  font-weight: normal;
}

.top-merit-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 15px;
  font-size: 1.5rem;
  line-height: 45px;
  font-weight: bold;
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
  /*
  	@if $media-width == tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (max-width: if($enable-tb-hor, $bp-tb-vert, $bp-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb {
  		// 横向きのブレイクポイントが有効(横向き用のデザインがある)場合は、標準のタブレットデザインは縦向きに限定する
  		// それ以外の場合は、横向きのブレイクポイントまでタブレットデザインを適用する
  		@media only screen and (min-width: if($enable-tb-hor, $bp-min-tb-vert, $bp-min-tb-hor)) {
  			@content;
  		}
  	}
  	@if $media-width == tb-vert {
  		@media only screen and (max-width: $bp-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-vert {
  		@media only screen and (min-width: $bp-min-tb-vert) {
  			@content;
  		}
  	}
  	@if $media-width == tb-hor {
  		@media only screen and (max-width: $bp-tb-hor) {
  			@content;
  		}
  	}
  	@if $media-width == min-tb-hor {
  		@media only screen and (min-width: $bp-min-tb-hor) {
  			@content;
  		}
  	}
  */
}
@media only screen and (max-width: 1530px) {
  .top-merit-txt {
    padding-left: 14px;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 990px) {
  .top-merit-txt {
    font-size: 1.5rem;
  }
}