/*
* 基本スタイル
* 全ページ共通スタイル
* メイン部分
* ヘッダー
* グローバルナビゲーション
* フッター
* リンク
* パーツ
* 汎用
*/
/* LESS Document */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  font-size: 2rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #CCC 1px dotted;
  margin: 30px 0;
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 20px;
}
table th {
  border: #D01F00 1px solid;
  background: rgba(208, 31, 0, 0.5);
  text-align: center;
  padding: 3px 10px;
}
table td {
  border: #D01F00 1px solid;
  text-align: center;
  padding: 3px 10px;
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #635A4B;
    border-radius: 15px;
  }
  .tableResponsive table thead {
    display: none;
  }
  .tableResponsive table th {
    display: block;
  }
  .tableResponsive table tr {
    display: block;
    margin-top: 10px;
  }
  .tableResponsive table td {
    display: block;
    border-top: none;
  }
  .tableResponsive table td::before {
    content: attr(aria-label);
    display: inline-block;
    width: 50px;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 2rem;
  list-style: disc;
}
.listDisc_01 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 {
  padding: 0 0 0 2rem;
}
.listDisc_02 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 li::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  width: 1.8rem;
  margin: 0 0 0 -1.8rem;
  text-align: center;
}
.listDisc_03 {
  padding: 0 0 0 1.5rem;
}
.listDisc_03 li:not(:last-child) {
  margin: 0 0 0;
}
.listDisc_03 li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #635A4B;
  margin-right: -8px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}
.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}
.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: '(' counter(number) ') ';
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 {
  display: flex;
  flex-wrap: wrap;
}
.dlList_01 dt {
  width: 150px;
  padding: 10px;
}
.dlList_01 dd {
  width: calc(100% - 150px);
  padding: 10px;
}
.dlList_01.dlBorder {
  border-bottom: #666 1px dotted;
}
.dlList_01.dlBorder dt:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
.dlList_01.dlBorder dd:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
@media screen and (max-width: 767px) {
  .dlList_01.dlBorder dd:nth-of-type(n+2) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .dlList_01 {
    display: block;
  }
  .dlList_01 dt {
    width: 100%;
    padding: 8px 0 2px;
  }
  .dlList_01 dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_02 {
  display: flex;
  flex-wrap: wrap;
}
.dlList_02 dt {
  width: 150px;
  padding: 10px;
}
.dlList_02 dd {
  width: calc(100% - 150px);
  padding: 10px;
}
.dlList_02.dlBorder {
  border-bottom: #666 1px dotted;
}
.dlList_02.dlBorder dt:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
.dlList_02.dlBorder dd:nth-of-type(n+2) {
  border-top: #666 1px dotted;
}
@media screen and (max-width: 767px) {
  .dlList_02.dlBorder dd:nth-of-type(n+2) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .dlList_02 dt {
    width: 80px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	全ページで必ず使っているstyle
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.inner::after {
  content: '';
  display: block;
  clear: both;
}
.inner::after {
  content: '';
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
.pageTop {
  padding: 15px 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #FFF;
}
.pageTop i {
  font-size: 2.4rem;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	header
+++++++++++++++++++++++++++++++++++++++++++ */
header .logoArea {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  header .logoArea {
    display: block;
  }
}
header .logoArea a {
  width: 160px;
}
@media screen and (max-width: 767px) {
  header .logoArea a {
    width: 100px;
  }
}
header .logoArea a img {
  width: 160px;
}
@media screen and (max-width: 767px) {
  header .logoArea a img {
    width: 100px;
  }
}
header .logoArea p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  header .logoArea p {
    font-size: 3.6vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	mv
+++++++++++++++++++++++++++++++++++++++++++ */
.mv .wrap {
  height: 956px;
  width: 100%;
  background: url("../img/mv.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .mv .wrap {
    height: 70vh;
    min-height: 70vw;
  }
}
.mv .wrap .hgroup {
  position: absolute;
  top: 193px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .mv .wrap .hgroup {
    top: 38vw;
  }
}
.mv .wrap .hgroup h1 {
  color: #FFFF00;
  font-size: 9vw;
  font-family: "ヒラギノ角ゴ Pro W8", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "sans-serif";
  mix-blend-mode: overlay;
  font-weight: 900;
  transform: rotate(-13deg);
  white-space: nowrap;
}
.mv .wrap .hgroup p {
  font-family: 'Oswald', sans-serif;
  font-size: 3vw;
  color: #fff;
  background-color: #000;
  display: inline-block;
  padding: 0 20px;
  line-height: 1.3;
  transform: rotate(-13deg);
  position: relative;
  top: -7vw;
}
@media screen and (max-width: 767px) {
  .mv .wrap .hgroup p {
    font-size: 4vw;
    top: -6.5vw;
  }
}
.mv .wrap .text {
  font-size: 2.8rem;
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro W8", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "sans-serif";
  font-weight: 700;
  position: absolute;
  bottom: 100px;
}
@media screen and (max-width: 767px) {
  .mv .wrap .text {
    font-size: 4.6vw;
  }
}
.mv .textArea p {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .mv .textArea p {
    font-size: 3.6vw;
  }
}
.interview {
  text-align: center;
}
.interview p {
  background-color: #fff;
  display: block;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .interview p {
    font-size: 6vw;
  }
}
.interview p:after {
  content: '\f0d7';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  font-size: 6vw;
  color: #FFC600;
  line-height: 0.8;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	メイン部分
+++++++++++++++++++++++++++++++++++++++++++ */
section .hgroup {
  background: url("../img/bg_portfolio.png") no-repeat center center;
  background-size: contain;
  max-width: 1242px;
  margin: 0 auto;
  padding: 120px 0 100px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  section .hgroup {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  section .hgroup {
    width: 95%;
    padding: 20px 0 10px;
    margin: 0px auto 20px;
  }
}
section .hgroup h2 {
  font-size: 12rem;
}
@media screen and (max-width: 767px) {
  section .hgroup h2 {
    font-size: 12vw;
  }
}
section .hgroup h2 span {
  font-size: 3.6rem;
  display: block;
  margin-bottom: -35px;
}
@media screen and (max-width: 767px) {
  section .hgroup h2 span {
    font-size: 5vw;
    margin-bottom: 0;
  }
}
#member .scheduleInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 0;
}
@media screen and (max-width: 767px) {
  #member .scheduleInner {
    padding: 0 10px;
  }
}
#member .memberBox:nth-of-type(2n) h3 {
  text-align: right;
}
#member .memberBox {
  margin: 60px 0 60px 0;
}
#member .memberBox h3 img {
  zoom: 0.85;
}
#member .memberBox .textArea {
  margin: 24px 0 30px;
}
#member .memberBox .textArea h4 {
  font-size: 2.6rem;
  margin: 40px 0 10px 0;
}
@media screen and (max-width: 767px) {
  #member .memberBox .textArea h4 {
    font-size: 5.2vw;
  }
}
#member .memberBox .textArea h4 .tag {
  background: #000;
  color: #FFF;
  font-size: 2.4rem;
  padding: 6px 20px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #member .memberBox .textArea h4 .tag {
    font-size: 4.8vw;
    padding: 3px 14px;
    margin-right: 10px;
  }
}
#member .memberBox .scheduleArea {
  padding: 22px 0 50px 0;
}
#member .memberBox .scheduleArea h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #member .memberBox .scheduleArea h3 {
    font-size: 4vw;
  }
}
#member .memberBox .scheduleArea h3 span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 9rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #member .memberBox .scheduleArea h3 span {
    font-size: 18vw;
  }
}
#member .memberBox:nth-of-type(1) .scheduleArea {
  background-color: rgba(18, 184, 247, 0.06);
}
#member .memberBox:nth-of-type(1) .scheduleArea h3 span {
  color: rgba(18, 184, 247, 0.2);
}
#member .memberBox:nth-of-type(2) .scheduleArea {
  background-color: rgba(94, 183, 181, 0.06);
}
#member .memberBox:nth-of-type(2) .scheduleArea h3 span {
  color: rgba(94, 183, 181, 0.2);
}
#member .memberBox:nth-of-type(3) .scheduleArea {
  background-color: rgba(216, 98, 24, 0.06);
}
#member .memberBox:nth-of-type(3) .scheduleArea h3 span {
  color: rgba(216, 98, 24, 0.2);
}
#member .memberBox:nth-of-type(4) .scheduleArea {
  background-color: rgba(185, 84, 144, 0.06);
}
#member .memberBox:nth-of-type(4) .scheduleArea h3 span {
  color: rgba(185, 84, 144, 0.2);
}
#member .memberBox:nth-of-type(5) .scheduleArea {
  background-color: rgba(154, 170, 0, 0.06);
}
#member .memberBox:nth-of-type(5) .scheduleArea h3 span {
  color: rgba(154, 170, 0, 0.2);
}
#member .memberBox:nth-of-type(6) .scheduleArea {
  background-color: rgba(254, 227, 0, 0.06);
}
#member .memberBox:nth-of-type(6) .scheduleArea h3 span {
  color: rgba(254, 227, 0, 0.2);
}
#member .memberBox:nth-of-type(7) .scheduleArea {
  background-color: rgba(247, 52, 144, 0.06);
}
#member .memberBox:nth-of-type(7) .scheduleArea h3 span {
  color: rgba(185, 84, 144, 0.2);
}
#work {
  max-width: 1400px;
  margin: auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  #work {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #work {
    padding: 0 10px;
  }
}
#work .tab_show {
  display: none;
}
@media screen and (max-width: 1024px) {
  #work .tab_show {
    display: block;
  }
}
#work .tab_hide {
  display: block;
}
@media screen and (max-width: 1024px) {
  #work .tab_hide {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  #work .textArea {
    border-left: solid 4px #000;
    padding-left: 20px;
    margin: 30px 0;
  }
  #work .textArea h4 {
    font-size: 4rem;
  }
  #work .textArea p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #work .textArea {
    border-left: solid 3px #000;
    padding-left: 10px;
    margin: 15px 0;
  }
  #work .textArea h4 {
    font-size: 6vw;
  }
  #work .textArea p {
    font-size: 3.6vw;
  }
}
#portfolio {
  padding: 130px 0 0 0;
}
@media screen and (max-width: 767px) {
  #portfolio {
    padding: 50px 0 0 0;
  }
}
#portfolio .inner {
  max-width: 1100px;
}
#portfolio h3 {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  #portfolio h3 {
    font-size: 6vw;
    line-height: 1.1;
  }
}
#portfolio .columnBox {
  margin: 0 0 55px 0;
}
#portfolio .columnBox .img {
  width: 44.25%;
}
@media screen and (max-width: 1024px) {
  #portfolio .columnBox .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
#portfolio .columnBox .img img {
  width: 100%;
}
#portfolio .columnBox .img img:hover {
  opacity: 0.7;
}
#portfolio .columnBox .textArea {
  width: 51.66%;
}
@media screen and (max-width: 1024px) {
  #portfolio .columnBox .textArea {
    width: 100%;
  }
}
#portfolio .columnBox:nth-of-type(3) {
  margin: 0 0 25px 0;
}
#portfolio .columnBox:nth-of-type(4) {
  padding-top: 30px;
}
#portfolio .url {
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 2.4rem;
  font-family: 'Oswald', sans-serif;
  padding: 0px 15px 2px 15px;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 767px) {
  #portfolio .url {
    font-size: 4vw;
  }
}
#portfolio .url:hover {
  text-decoration: underline;
}
#portfolio .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#portfolio .flex .iconBox {
  margin: 15px 0 0 0;
}
@media screen and (max-width: 1024px) {
  #portfolio .flex .iconBox {
    width: 16.6%;
  }
}
@media screen and (max-width: 767px) {
  #portfolio .flex .iconBox {
    width: 24%;
  }
}
#portfolio .flex .iconBox p {
  text-align: center;
  font-size: 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 3px;
  width: 83px;
}
@media screen and (max-width: 767px) {
  #portfolio .flex .iconBox p {
    font-size: 3.4vw;
  }
}
#portfolio .flex .iconBox p:before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
#portfolio .flex .iconBox:nth-of-type(1) p:before {
  background-color: #12A4F7;
}
#portfolio .flex .iconBox:nth-of-type(2) p:before {
  background-color: #5EB7B5;
}
#portfolio .flex .iconBox:nth-of-type(3) p:before {
  background-color: #9AAA00;
}
#portfolio .flex .iconBox:nth-of-type(4) p:before {
  background-color: #B95490;
}
#portfolio .flex .iconBox:nth-of-type(5) p:before {
  background-color: #FEE300;
}
#portfolio .flex .iconBox:nth-of-type(6) p:before {
  background-color: #F73460;
}
#portfolio .flex .none p {
  color: #ccc;
}
#portfolio .flex .none p:before {
  background-color: #fff !important;
  border: solid 1px #ccc;
}
#portfolio .inner {
  padding: 0 10px;
}
#portfolio .list li {
  opacity: 1;
  transition: all 0.4s ease 0s;
  overfllow: hidden;
}
#portfolio .list li.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}
#portfolio .more {
  text-align: center;
  margin-top: 20px;
}
#portfolio button {
  background-color: #000;
  border: none;
  cursor: pointer;
  outline: none;
  color: #fff;
  padding: 0;
  line-height: 40px;
  width: 160px;
  border-radius: 20px;
}
#company {
  padding-top: 40px;
}
#company .hgroup {
  background: url("../img/bg_company.png") no-repeat center center;
  max-width: 1202px;
  background-size: contain;
}
#company .columnBox {
  margin: 30px 0 60px 0;
}
#company .columnBox dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#company .columnBox dl dt {
  width: 20%;
  height: 32px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.8rem;
  margin-right: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #company .columnBox dl dt {
    width: 23%;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  #company .columnBox dl dt {
    font-size: 4vw;
    width: 23%;
    margin-right: 4%;
  }
}
#company .columnBox dl dd {
  font-size: 1.8rem;
  width: 76%;
}
@media screen and (max-width: 1024px) {
  #company .columnBox dl dd {
    font-size: 1.6rem;
    width: 73%;
  }
}
@media screen and (max-width: 767px) {
  #company .columnBox dl dd {
    font-size: 3.6vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 72%;
  }
}
#company .columnBox dl dd li {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #company .columnBox dl dd li {
    margin-bottom: 5px;
  }
}
#company .inner {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #company .inner {
    padding: 0 5px;
  }
}
#access .hgroup {
  background: url("../img/bg_access.png") no-repeat center center;
  max-width: 1012px;
  background-size: contain;
}
#access p {
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #access p {
    font-size: 3.6vw;
  }
}
#access p span {
  font-weight: bold;
}
#access .gMap {
  margin-top: 20px;
}
#guidelines {
  padding-top: 80px;
}
#guidelines .inner {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #guidelines .inner {
    padding: 0 5px;
  }
}
#guidelines .hgroup {
  background: url("../img/bg_guidelines.png") no-repeat center center;
  max-width: 1258px;
  background-size: contain;
}
#guidelines .tabNav {
  display: flex;
  justify-content: center;
  border-bottom: solid 4px #000;
  margin: 0 0 50px 0;
}
#guidelines .tabNav li {
  width: 40%;
  max-width: 370px;
  text-align: center;
  margin: 0 2.5%;
  position: relative;
  bottom: -1px;
}
@media screen and (max-width: 767px) {
  #guidelines .tabNav li {
    width: 46%;
    margin: 0 1.3%;
  }
}
#guidelines .tabNav a {
  text-decoration: none;
  display: block;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-left: solid 1px #ccc;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 4px 10px 0 10px;
}
@media screen and (max-width: 767px) {
  #guidelines .tabNav a {
    font-size: 4vw;
    padding: 20px 0;
  }
}
#guidelines .tabNav .active {
  background-color: #000000;
  border: none;
  border-bottom: solid 1px #000000;
  color: #FFFFFF;
}
#guidelines .guidelineList {
  padding-top: 100px;
  margin-top: -120px;
  display: flex;
  flex-wrap: wrap;
}
#guidelines .guidelineList dt {
  border-bottom: dashed 1px #000;
  width: 25%;
  padding: 10px 0 10px 20px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #guidelines .guidelineList dt {
    width: 30%;
    font-size: 3.6vw;
  }
}
#guidelines .guidelineList dd {
  border-bottom: dashed 1px #000;
  width: 75%;
  padding: 10px 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #guidelines .guidelineList dd {
    width: 70%;
    font-size: 3.6vw;
  }
}
#guidelines .guidelineList dd dl dt {
  font-weight: normal;
  border: none;
  padding: 0;
  width: 100%;
}
#guidelines .guidelineList dd dl dd {
  border: none;
  padding: 0 0 0 30px;
  width: 100%;
}
#guidelines .guidelineList dd span {
  display: block;
  margin-top: 20px;
}
#guidelines .guidelineList dd ul {
  list-style: disc;
  margin-left: 20px;
}
#guidelines .contactArea {
  text-align: center;
  margin: 80px 0 120px 0;
}
@media screen and (max-width: 767px) {
  #guidelines .contactArea {
    margin: 20px 0 30px 0;
  }
}
#guidelines .contactArea p {
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #guidelines .contactArea p {
    font-size: 4vw;
  }
}
#guidelines .contactArea a {
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  padding: 10px 60px 8px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  #guidelines .contactArea a {
    padding: 10px 25px 8px;
    font-size: 6vw;
  }
}
#guidelines .contactArea a:hover {
  opacity: 0.7;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
.drawer-hamburger-icon {
  width: 9px!important;
  height: 9px!important;
  border-radius: 50%;
  margin-top: 20px;
}
.drawer-hamburger-icon:before {
  width: 9px!important;
  height: 9px!important;
  border-radius: 50%;
  top: -12px !important;
}
.drawer-hamburger-icon:after {
  width: 9px!important;
  height: 9px!important;
  border-radius: 50%;
  top: 12px!important;
}
.drawer-text {
  position: absolute;
  top: 35px;
  right: 40px;
  font-size: 1.4rem;
  color: #fff;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #fff !important;
}
.drawer--right .drawer-nav {
  right: -35rem;
}
@media screen and (max-width: 767px) {
  .drawer--right .drawer-nav {
    right: -24rem;
  }
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 35rem;
}
@media screen and (max-width: 767px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 24rem;
  }
}
.drawer-nav {
  width: 35rem;
  padding-left: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .drawer-nav {
    width: 24rem;
  }
}
.drawer-menu-item {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .drawer-menu-item {
    font-size: 4vw;
  }
}
.drawer-brand {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .drawer-brand {
    font-size: 4vw;
  }
}
.change-color .drawer-text {
  color: #000;
}
.change-color .drawer-hamburger-icon,
.change-color .drawer-hamburger-icon:after,
.change-color .drawer-hamburger-icon:before {
  background-color: #000 !important;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	footer
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  background-color: #000;
  background-size: cover;
  height: 290px;
  max-height: 780px;
  text-align: center;
  padding: 30px 0 0 0;
}
footer p {
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 20px 0;
}
footer img {
  width: 160px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #000;
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a.link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7.5px;
  border-color: transparent transparent transparent #2DA7E0;
  margin: 0 3px 0 0;
  vertical-align: baseline;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（不特定のページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  background: #EEE;
  padding: 15px;
}
.box.boxRed {
  background: #D99;
}
.photoFrame {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border: #FFF 4px solid;
  box-sizing: border-box;
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columnBox  > * {
  display: block;
  width: 49%;
}
.columnBox::before,
.columnBox::after {
  content: '';
  order: 1;
  display: block;
  width: 49%;
}
.columnBox.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columnBox.col3  > * {
  display: block;
  width: 32%;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
}
.columnBox.col4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columnBox.col4  > * {
  display: block;
  width: 24%;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .columnBox.col1_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .columnBox.col1_sp  > * {
    display: block;
    width: 100%;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
  }
  .columnBox.col2_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .columnBox.col2_sp  > * {
    display: block;
    width: 49%;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
  }
  .columnBox.col3_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .columnBox.col3_sp  > * {
    display: block;
    width: 32%;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
  }
}
.btn {
  background: #635A4B;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  width: 300px;
  height: 50px;
}
.btn .fa {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn:hover {
  opacity: 0.7;
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #FCC !important;
}
.error {
  color: #F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center!important;
}
.texLeft {
  text-align: left!important;
}
.texRight {
  text-align: right!important;
}
@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 500!important;
}
.weightBold {
  font-weight: bold!important;
}
.floatL {
  float: left;
}
.floatR {
  float: right;
}
.imgL {
  float: left;
  margin: 0 1em 1em 0;
}
@media screen and (max-width: 767px) {
  .imgL {
    display: block;
    float: none;
    margin: 0 auto 1em;
  }
}
.imgR {
  float: right;
  margin: 0 0 1em 1em;
}
@media screen and (max-width: 767px) {
  .imgR {
    display: block;
    float: none;
    margin: 0 auto 1em;
  }
}
.boxCenter {
  display: block;
  margin: 0 auto;
}
.borderNone {
  border: none!important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #D01F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	font-size
+++++++++++++++++++++++++++++++++++++++++++ */
.fs10 {
  font-size: 1rem!important;
}
.fs11 {
  font-size: 1.1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs13 {
  font-size: 1.3rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs15 {
  font-size: 1.5rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs17 {
  font-size: 1.7rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs19 {
  font-size: 1.9rem !important;
}
.fs20 {
  font-size: 2rem!important;
}
.fs21 {
  font-size: 2.1rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs23 {
  font-size: 2.3rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs25 {
  font-size: 2.5rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs27 {
  font-size: 2.7rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs29 {
  font-size: 2.9rem !important;
}
.fs30 {
  font-size: 3rem!important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs34 {
  font-size: 3.4rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs38 {
  font-size: 3.8rem !important;
}
.fs40 {
  font-size: 4rem!important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs44 {
  font-size: 4.4rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
@media screen and (max-width: 767px) {
  .fs10 {
    font-size: 2vw!important;
  }
  .fs11 {
    font-size: 2.2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs13 {
    font-size: 2.6vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs15 {
    font-size: 3vw!important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs17 {
    font-size: 3.4vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs19 {
    font-size: 3.8vw !important;
  }
  .fs20 {
    font-size: 4vw!important;
  }
  .fs21 {
    font-size: 4.2vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs23 {
    font-size: 4.6vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs25 {
    font-size: 5vw!important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs27 {
    font-size: 5.4vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs29 {
    font-size: 5.8vw !important;
  }
  .fs30 {
    font-size: 6vw!important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw!important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw!important;
  }
  .fs11_sp {
    font-size: 2.2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs13_sp {
    font-size: 2.6vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs15_sp {
    font-size: 3vw!important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs17_sp {
    font-size: 3.4vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs19_sp {
    font-size: 3.8vw !important;
  }
  .fs20_sp {
    font-size: 4vw!important;
  }
  .fs21_sp {
    font-size: 4.2vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs23_sp {
    font-size: 4.6vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs25_sp {
    font-size: 5vw!important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs27_sp {
    font-size: 5.4vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs29_sp {
    font-size: 5.8vw !important;
  }
  .fs30_sp {
    font-size: 6vw!important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw!important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	margin
+++++++++++++++++++++++++++++++++++++++++++ */
.mt0 {
  margin-top: 0!important;
}
.mt5 {
  margin-top: 5px!important;
}
.mt10 {
  margin-top: 10px!important;
}
.mt15 {
  margin-top: 15px!important;
}
.mt20 {
  margin-top: 20px!important;
}
.mt25 {
  margin-top: 25px!important;
}
.mt30 {
  margin-top: 30px!important;
}
.mt35 {
  margin-top: 35px!important;
}
.mt40 {
  margin-top: 40px!important;
}
.mt45 {
  margin-top: 45px!important;
}
.mt50 {
  margin-top: 50px!important;
}
.mb0 {
  margin-bottom: 0!important;
}
.mb5 {
  margin-bottom: 5px!important;
}
.mb10 {
  margin-bottom: 10px!important;
}
.mb15 {
  margin-bottom: 15px!important;
}
.mb20 {
  margin-bottom: 20px!important;
}
.mb25 {
  margin-bottom: 25px!important;
}
.mb30 {
  margin-bottom: 30px!important;
}
.mb35 {
  margin-bottom: 35px!important;
}
.mb40 {
  margin-bottom: 40px!important;
}
.mb45 {
  margin-bottom: 45px!important;
}
.mb50 {
  margin-bottom: 50px!important;
}
.mr0 {
  margin-right: 0!important;
}
.mr5 {
  margin-right: 5px!important;
}
.mr10 {
  margin-right: 10px!important;
}
.mr15 {
  margin-right: 15px!important;
}
.mr20 {
  margin-right: 20px!important;
}
.mr25 {
  margin-right: 25px!important;
}
.mr30 {
  margin-right: 30px!important;
}
.mr35 {
  margin-right: 35px!important;
}
.mr40 {
  margin-right: 40px!important;
}
.mr45 {
  margin-right: 45px!important;
}
.mr50 {
  margin-right: 50px!important;
}
.ml0 {
  margin-left: 0!important;
}
.ml5 {
  margin-left: 5px!important;
}
.ml10 {
  margin-left: 10px!important;
}
.ml15 {
  margin-left: 15px!important;
}
.ml20 {
  margin-left: 20px!important;
}
.ml25 {
  margin-left: 25px!important;
}
.ml30 {
  margin-left: 30px!important;
}
.ml35 {
  margin-left: 35px!important;
}
.ml40 {
  margin-left: 40px!important;
}
.ml45 {
  margin-left: 45px!important;
}
.ml50 {
  margin-left: 50px!important;
}
@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px!important;
  }
  .mt5_sp {
    margin-top: 5px!important;
  }
  .mt10_sp {
    margin-top: 10px!important;
  }
  .mt15_sp {
    margin-top: 15px!important;
  }
  .mt20_sp {
    margin-top: 20px!important;
  }
  .mt25_sp {
    margin-top: 25px!important;
  }
  .mt30_sp {
    margin-top: 30px!important;
  }
  .mt35_sp {
    margin-top: 35px!important;
  }
  .mt40_sp {
    margin-top: 40px!important;
  }
  .mt45_sp {
    margin-top: 45px!important;
  }
  .mt50_sp {
    margin-top: 50px!important;
  }
  .mb0_sp {
    margin-bottom: 0px!important;
  }
  .mb5_sp {
    margin-bottom: 5px!important;
  }
  .mb10_sp {
    margin-bottom: 10px!important;
  }
  .mb15_sp {
    margin-bottom: 15px!important;
  }
  .mb20_sp {
    margin-bottom: 20px!important;
  }
  .mb25_sp {
    margin-bottom: 25px!important;
  }
  .mb30_sp {
    margin-bottom: 30px!important;
  }
  .mb35_sp {
    margin-bottom: 35px!important;
  }
  .mb40_sp {
    margin-bottom: 40px!important;
  }
  .mb45_sp {
    margin-bottom: 45px!important;
  }
  .mb50_sp {
    margin-bottom: 50px!important;
  }
  .mr0_sp {
    margin-right: 0px!important;
  }
  .mr5_sp {
    margin-right: 5px!important;
  }
  .mr10_sp {
    margin-right: 10px!important;
  }
  .mr15_sp {
    margin-right: 15px!important;
  }
  .mr20_sp {
    margin-right: 20px!important;
  }
  .mr25_sp {
    margin-right: 25px!important;
  }
  .mr30_sp {
    margin-right: 30px!important;
  }
  .mr35_sp {
    margin-right: 35px!important;
  }
  .mr40_sp {
    margin-right: 40px!important;
  }
  .mr45_sp {
    margin-right: 45px!important;
  }
  .mr50_sp {
    margin-right: 50px!important;
  }
  .ml0_sp {
    margin-left: 0px!important;
  }
  .ml5_sp {
    margin-left: 5px!important;
  }
  .ml10_sp {
    margin-left: 10px!important;
  }
  .ml15_sp {
    margin-left: 15px!important;
  }
  .ml20_sp {
    margin-left: 20px!important;
  }
  .ml25_sp {
    margin-left: 25px!important;
  }
  .ml30_sp {
    margin-left: 30px!important;
  }
  .ml35_sp {
    margin-left: 35px!important;
  }
  .ml40_sp {
    margin-left: 40px!important;
  }
  .ml45_sp {
    margin-left: 45px!important;
  }
  .ml50_sp {
    margin-left: 50px!important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
  .sp_show.inline {
    display: inline;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
