@charset "UTF-8";
/*!===========================
このcssはSassから生成されていますので、
直接編集しないようご注意ください。
===========================*/
@keyframes zoomout {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes left-right {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes slideup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vertical {
  0% {
    height: 0px;
    bottom: auto;
    top: 90px;
  }
  49.9% {
    bottom: auto;
    top: 90px;
  }
  50% {
    height: calc(100% - 90px - 70px);
    top: auto;
    bottom: 70px;
  }
  100% {
    height: 0px;
    top: auto;
    bottom: 70px;
  }
  /*0% { height: 0px; bottom: auto; top: 34px; }
     49.9% { bottom: auto; top: 34px;}
  50% { height: 70px; top: auto; bottom:0;}
  100% { height: 0px; top: auto; bottom:0;}*/
}
/* スクロールアニメーション基本設定
============================== */
.iv, .ivo {
  transform: translateY(50px);
  opacity: 0;
}

.fadeinup {
  transition: all 1s ease-in;
  transform: translateY(0px);
  opacity: 1 !important;
}

html {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  font-size: 62.5%;
  color: #333;
  background-color: #fff;
}

body {
  line-height: 1.95;
  font-size: 1.4em;
  /** {
  	transition: all .3s;
  }*/
}

a {
  color: #333;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

figure {
  text-align: center;
}

img {
  flex-shrink: 0;
  max-width: 100% !important;
  height: auto !important;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .col img {
    width: 100%;
  }

  *::-ms-backdrop, #pttl img {
    width: 100%;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: 700;
}

input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url] {
  background-color: #fff;
  font-family: inherit;
  border: 1px solid #e3e3e3;
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 1.6rem;
  margin: 0;
  padding: 6px;
  height: 42px;
  width: 100%;
  border-radius: 5px;
  -webkit-appearance: none;
}
input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=email]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus {
  background: #fafafa;
  border-color: #ccc;
  outline-color: #ccc;
}
input[type=text][disabled], input[type=password][disabled], input[type=date][disabled], input[type=datetime][disabled], input[type=email][disabled], input[type=number][disabled], input[type=search][disabled], input[type=tel][disabled], input[type=time][disabled], input[type=url][disabled] {
  background-color: #ddd;
}

textarea {
  height: auto;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  font-family: inherit;
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-size: 1.6rem;
  margin: 0;
  padding: 6px;
  height: 42px;
  width: 100%;
  min-height: 6em;
  border-radius: 5px;
}
textarea:focus {
  background: #fafafa;
  border-color: #ccc;
}
textarea[disabled] {
  background-color: #ddd;
}

select {
  margin: 0;
  padding: 6px 30px 6px 6px;
  color: rgba(0, 0, 0, 0.75);
  font-family: inherit;
  font-size: 1.6rem;
  -webkit-appearance: none;
  width: 100%;
  height: 42px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

:placeholder-shown {
  color: #ccc;
}

.select-box {
  width: 100%;
  position: relative;
}
.select-box::after {
  content: "";
  color: #aaa;
  border: solid;
  border-width: 2px 2px 0 0;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: calc(50% - 0.4em);
  right: 15px;
  z-index: 2;
  transform: rotate(135deg);
  pointer-events: none;
}

hr {
  clear: both;
  border: none;
  margin: 2.5em 0;
  border-top: 1px solid;
}

table {
  font-size: 1.4rem;
  width: 100%;
  border: none;
  border-collapse: collapse;
}
table > tbody > tr > th,
table > tbody > tr > td {
  padding: 15px 20px;
  border: 1px solid #f08021;
}
table > tbody > tr > th {
  width: 25%;
  min-width: 80px;
  color: #fff;
  background: #f08021;
}
table .bg-green {
  color: #FFF;
  background: #3c6c59;
}
table .bg-gray {
  color: #333;
  background: #F7F7F7;
}
table .bg-orange {
  background: #f5e4ce;
}
table .w100 {
  min-width: 100px !important;
}
table .w120 {
  min-width: 120px !important;
}
table .w150 {
  min-width: 150px !important;
}
table .w180 {
  min-width: 180px !important;
}
table .w200 {
  min-width: 200px !important;
}
table.list > tbody > tr > th {
  width: auto;
}
table > caption {
  font-weight: bold;
  text-align: inherit;
}

/* ==================================================
layout
================================================== */
footer > *,
#content > * {
  padding-left: 20px;
  padding-right: 20px;
}

#fadd-wrap > *,
#content > * > *,
#breadcrumb > * {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

main {
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
main > * {
  width: 100%;
}
main > aside {
  padding: 50px 20px 50px 20px;
  width: calc(50% - (1280px / 2 - 320px));
  min-width: 300px;
}
main > aside > * {
  margin-left: auto;
  max-width: 320px;
}
main > aside + #content {
  width: calc(50% + (1280px / 2 - 320px));
  max-width: 960px;
  /*@media (max-width: 1280px) {
      width: calc(100% - 320px);
  }*/
}
main > aside + #content > * {
  padding-left: 20px;
}
main > aside + #content > * > * {
  /*max-width: 664px;
  margin-left: 0;*/
}
@media (max-width: 1280px) {
  main > aside + #content {
    width: calc(100% - 320px);
  }
}
@media (max-width: 900px) {
  main > aside {
    order: 1;
    width: 100%;
    padding: 50px 0 0;
    margin-bottom: 0;
  }
  main > aside > * {
    max-width: none;
  }
  main > aside + #content {
    width: 100%;
  }
}

/* class
============================== */
.page-tit {
  padding: 8em 0 3em !important;
  background: #f08021;
}

.title-h01 {
  color: #333;
  font-size: 1.7rem;
  text-align: center;
  line-height: 1.1;
}
.title-h01 .eng {
  color: #f08021;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 4rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.title-h01 .eng .no {
  font-size: 1.4rem;
  position: absolute;
  top: 0.5em;
  left: -1.75em;
}
.title-h01 .jpn {
  display: block;
  margin-top: 0.5em;
}
.title-h01.white {
  color: #fff;
}
.title-h01.white .eng {
  color: #fff;
}

.sp {
  display: none !important;
}

.clearfix::after, #content::after {
  content: "";
  display: block;
  clear: both;
}

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

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

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

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft,
.alignright {
  max-width: 52% !important;
  margin-bottom: 10px;
}
.alignleft br + img,
.alignright br + img {
  margin-top: 5px;
}

.alignleft {
  float: left;
  margin-right: 40px;
}

.alignright {
  float: right;
  margin-left: 40px;
}

.mtop0 {
  margin-top: 0 !important;
}

.mtop05em {
  margin-top: 0.5em !important;
}

.mtop1em {
  margin-top: 1em !important;
}

.mtop2em {
  margin-top: 2em !important;
}

.mtop3em {
  margin-top: 3em !important;
}

.mtop4em {
  margin-top: 4em !important;
}

.mbottom4em {
  margin-bottom: 4em !important;
}

.ptop0 {
  padding-top: 0 !important;
}

.ptop05em {
  padding-top: 0.5em !important;
}

.ptop1em {
  padding-top: 1em !important;
}

.ptop2em {
  padding-top: 2em !important;
}

.ptop3em {
  padding-top: 3em !important;
}

.ptop4em {
  padding-top: 4em !important;
}

.txt-unline {
  display: inline-block;
  position: relative;
}
.txt-unline::before {
  content: "";
  margin: auto;
  background: #FF0000;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.txt-large180 {
  font-size: 180%;
}

.txt-large {
  font-size: 130%;
}

.txt-mid {
  font-size: 90%;
}

.txt-small {
  font-size: 80%;
}

.txt-orange {
  color: #f08021;
}

.txt-red {
  color: #FF0000;
}

.txt-blue {
  color: #00519F;
}

.txt-green {
  color: #0B9214;
}

.txt-white {
  color: #fff;
}

del {
  background-image: linear-gradient(#f08021, #f08021);
  background-position: 0 50%;
  background-size: 100% 2px;
  background-repeat: repeat-x;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
}

.col {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
}
.col > * {
  width: calc(100% / 2 - 20px);
}
.col > *:nth-child(n+3) {
  margin-top: 2em;
}
.col.derection-row {
  flex-direction: row;
}
.col.derection-row-re {
  flex-direction: row-reverse;
}
.col.col3::before, .col.col4::before, .col.col5::before {
  content: "";
  display: block;
  height: 0;
  order: 1;
}
.col.col3::after, .col.col4::after, .col.col5::after {
  content: "";
  display: block;
  height: 0;
}
.col.col3::before {
  width: calc(100% / 3 - 20px);
}
.col.col3::after {
  width: calc(100% / 3 - 20px);
}
.col.col3 > * {
  width: calc(100% / 3 - 20px);
}
.col.col3 > *:nth-child(-n+3) {
  margin-top: 0;
}
.col.col3 > *:nth-child(n+4) {
  margin-top: 2em;
}
.col.col4::before {
  width: calc(100% / 4 - 20px);
}
.col.col4::after {
  width: calc(100% / 4 - 20px);
}
.col.col4 > * {
  width: calc(100% / 4 - 20px);
}
.col.col4 > *:nth-child(-n+4) {
  margin-top: 0;
}
.col.col4 > *:nth-child(n+5) {
  margin-top: 2em;
}
.col.col5::before {
  width: calc(100% / 5 - 20px);
}
.col.col5::after {
  width: calc(100% / 5 - 20px);
}
.col.col5 > * {
  width: calc(100% / 5 - 20px);
}
.col.col5 > *:nth-child(-n+5) {
  margin-top: 0;
}
.col.col5 > *:nth-child(n+6) {
  margin-top: 2em;
}
.col.w40w55 > *:nth-child(1) {
  width: 41%;
}
.col.w40w55 > *:nth-child(2) {
  width: 55%;
}
.col.w55w40 > *:nth-child(1) {
  width: 55%;
}
.col.w55w40 > *:nth-child(2) {
  width: 41%;
}
.btn {
  padding: 1.1em 1.8em 1.1em 0.8em !important;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.4;
  text-decoration: none;
  background: #f08021;
  border: 1px solid #f08021;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: 240px;
  position: relative;
  cursor: pointer;
}
.btn::after {
  content: "";
  border: solid;
  border-width: 2px 2px 0 0;
  width: 0.7em;
  height: 0.7em;
  position: absolute;
  top: calc(50% - 0.35em);
  right: 5.5%;
  transform: rotate(45deg);
}
.btn:hover {
  color: #f08021;
  background: #fff;
}
.btn.white {
  color: #fff;
  background: #f08021;
  border: 1px solid #fff;
}
.btn.red {
  background: #dc0000;
  border: 1px solid #dc0000;
}
.btn.w130 {
  min-width: 130px;
}
.btn.w320 {
  min-width: 320px;
}
.btn.w100p {
  width: 100%;
  min-width: inherit;
}

.btn-area {
  margin-top: 2em !important;
}
.btn-area.right {
  text-align: right;
}
.btn-area.center {
  text-align: center;
}
.btn-area.w400 {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}
.btn-area.w500 {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}
.btn-area.w600 {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.list-kome:nth-child(n+2),
.list-square:nth-child(n+2),
.list-circle:nth-child(n+2),
.list-no:nth-child(n+2) {
  margin-top: 0.5em !important;
}
.list-kome li,
.list-square li,
.list-circle li,
.list-no li {
  padding: 0 0 0 1.2em !important;
  position: relative;
}
.list-kome li::before,
.list-square li::before,
.list-circle li::before,
.list-no li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.list-kome li::before {
  content: "※";
}

.list-square li::before {
  content: "■";
}

.list-circle li::before {
  content: "●";
  font-size: 80%;
  top: 0.2em;
}

.list-no {
  counter-reset: no;
}
.list-no li {
  counter-increment: no;
}
.list-no li::before {
  content: counter(no) ".";
}

.list-tag-no {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.list-tag-no::before {
  content: "";
  display: block;
  width: calc(100% / 5 - 20px);
  height: 0;
  order: 1;
}
.list-tag-no::after {
  content: "";
  display: block;
  width: calc(100% / 5 - 20px);
  height: 0;
}
.list-tag-no li {
  width: calc(100% / 5 - 20px);
  position: relative;
}
.list-tag-no li:nth-child(-n+5) {
  margin-top: 0;
}
.list-tag-no li:nth-child(n+6) {
  margin-top: 2em;
}
.list-tag-no li .no {
  padding: 0.5em 0 0 0.5em;
  color: #fff;
  font-size: 1.3rem;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #b3002e 50.5%) no-repeat top left/100% 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* ==================================================
header
================================================== */
body:not(#top) header {
  /*.wrap {
  	padding-top: 10px;
  	align-items: center;
  }*/
}

header {
  margin: 0;
  padding: 0 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
header.fixed {
  background: rgba(255, 255, 255, 0.3);
}
header.fixed .wrap {
  padding-top: 10px;
  align-items: center;
}
header a {
  text-decoration: none;
}
header .wrap {
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1500px;
  position: relative;
}
header .wrap .title-area {
  width: 45%;
}
header .wrap .snippet {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
}
header .wrap .gnav-area {
  width: 80%;
}
header .wrap .gnav-area .nav-area-gnavi {
  margin: 0;
}
header .wrap .gnav-area .nav-area-gnavi ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .wrap .gnav-area .nav-area-gnavi ul li {
  font-size: 1.4rem;
  line-height: 1.2;
}
header .wrap .gnav-area .nav-area-gnavi ul li a {
  padding: 5px 0;
  color: #000;
  display: block;
  position: relative;
}
header .wrap .gnav-area .nav-area-gnavi ul li a:hover {
  color: #a47b50;
}
header .wrap .gnav-area .nav-area-gnavi ul li a:hover::after {
  content: "";
  background: #a47b50;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: left-right 1s 0s forwards;
}
header .wrap .gnav-area .nav-area-gnavi ul li:nth-child(n+2) {
  margin: 0 0 0 2em;
}
header .wrap .gnav-area .nav-area-gnavi ul li.sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .wrap .gnav-area .nav-area-gnavi ul li.sns a:nth-child(n+2) {
  margin: 0 0 0 1.5em;
}
header .wrap .gnav-area .nav-area-gnavi ul li.bnr {
  display: none;
}
@media (max-width: 800px) {
  header .wrap .gnav-area {
    width: auto;
  }
}

.drawer-hamburger {
  display: none;
}

#hmenu-wrap {
  background: none;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  position: static;
}

.drawer--right .drawer-nav {
  right: -300px;
}

@media (max-width: 800px) {
  .drawer-hamburger {
    margin: 0;
    padding: 10px;
    display: block;
    width: 30px;
    height: 50px;
    position: absolute;
    top: calc(50% - 45px);
    right: -10px !important;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    background: none;
    z-index: 10000;
  }
  .drawer--right.drawer-open .drawer-hamburger span {
    display: block;
  }

  .drawer-hamburger-icon {
    margin-top: 0;
  }
  .drawer-hamburger-icon::before {
    top: -8px;
  }
  .drawer-hamburger-icon::after {
    top: 8px;
  }

  .sr-only {
    font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Times New Roman", "ＭＳ 明朝", "MS Mincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 1.2rem;
    clip: inherit;
    width: auto;
    height: auto;
    left: 0;
    right: 0;
    bottom: 6.5%;
  }

  .drawer--right .drawer-nav {
    right: -300px;
  }

  #hmenu-wrap {
    padding: 0 0 3em;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    width: 300px;
    position: fixed;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    touch-action: auto !important;
  }
  #hmenu-wrap .nav-area-gnavi {
    margin: 4.5em 0 0;
    padding: 0 20px;
  }
  #hmenu-wrap .nav-area-gnavi ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #hmenu-wrap .nav-area-gnavi ul li {
    font-size: 1.6rem;
    line-height: 1.2;
    width: 100%;
    position: relative;
  }
  #hmenu-wrap .nav-area-gnavi ul li a {
    display: block;
  }
  #hmenu-wrap .nav-area-gnavi ul li a::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.3em);
    right: 0.4em;
    width: 0.6em;
    height: 0.6em;
    border: solid;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
  }
  #hmenu-wrap .nav-area-gnavi ul li a:hover {
    color: inherit;
  }
  #hmenu-wrap .nav-area-gnavi ul li a:hover::after {
    display: none;
  }
  #hmenu-wrap .nav-area-gnavi ul li:nth-child(n+2) {
    margin: 1em 0 0;
    padding: 0;
  }
  #hmenu-wrap .nav-area-gnavi ul li.sns {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  #hmenu-wrap .nav-area-gnavi ul li.sns a {
    display: inline;
  }
  #hmenu-wrap .nav-area-gnavi ul li.sns a::after {
    display: none;
  }
  #hmenu-wrap .nav-area-gnavi ul li.sns .instagram img {
    width: 25px;
  }
  #hmenu-wrap .nav-area-gnavi ul li.sns .facebook img {
    width: 15px;
  }
  #hmenu-wrap .nav-area-gnavi ul li.bnr {
    display: block;
  }
}
/* ==================================================
footer
================================================== */
body:not(#top) footer {
  padding: 3em 20px;
}

footer {
  margin-top: 4em;
  padding: 3em 20px 10em;
  background: #fff;
}
footer a {
  text-decoration: none;
}
footer #page_top {
  padding: 0 !important;
}
footer #page_top a {
  padding: 1em 20px;
  color: #fff;
  text-align: right;
  background: #404040;
  display: block;
}
footer #page_top a span {
  position: relative;
}
footer #page_top a span::before {
  content: "";
  color: #777777;
  position: absolute;
  top: calc(50% - 0.1em);
  left: -1.4em;
  width: 0.6em;
  height: 0.6em;
  border: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(-45deg);
}
footer #page_top a:hover {
  opacity: 0.8;
}
footer .footer-wrap {
  margin: 0 auto;
  padding: 0 !important;
  max-width: 1500px;
}
footer .footer-wrap .f-btn-area .btn-list {
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-wrap .f-btn-area .btn-list li {
  width: calc(100% / 2 - 10px);
}
footer .footer-wrap .f-about-area {
  margin-top: 3em;
}
footer .footer-wrap .f-about-area .logo {
  text-align: center;
}
footer .footer-wrap .f-about-area .sns-list {
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-wrap .f-about-area .sns-list li {
  font-size: 1.8rem;
}
footer .footer-wrap .f-about-area .sns-list li:nth-child(n+2) {
  margin-left: 1em;
}
footer .footer-wrap .f-about-area .sns-list li a {
  display: block;
}
footer .footer-wrap .copyright {
  margin: 3em 0 0;
  font-size: 1.2rem;
  text-align: center;
}
/* ==================================================
aside
================================================== */
main > aside {
  position: relative;
}
main > aside .nav-area {
  padding: 1.2em;
  border-right: 1px solid #DDDDDD;
}
main > aside .nav-area a {
  text-decoration: none;
}
main > aside .nav-area .title {
  padding: 0 0 0.8em;
  font-size: 2.2rem;
  border-bottom: 1px solid #DDDDDD;
}
main > aside .nav-area dl {
  margin: 1em auto 0;
}
main > aside .nav-area dl dt {
  margin: 0.5em 0 0;
  padding: 0.5em 1.5em 0.5em 0.5em;
  font-size: 1.5rem;
  border-radius: 0.4em;
  display: block;
  position: relative;
  cursor: pointer;
}
main > aside .nav-area dl dt:hover {
  background: #F4F4F4;
}
main > aside .nav-area dl dt::after {
  content: "";
  color: #777777;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0.5em;
  width: 0.6em;
  height: 0.6em;
  border: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
}
main > aside .nav-area dl dt.active::after {
  top: calc(50% - 0.2em);
  transform: rotate(-45deg);
}
main > aside .nav-area dl dd {
  display: none;
}
main > aside .nav-area dl dd ul li a {
  padding: 0.6em 0.5em 0.6em 1.5em;
  font-size: 1.4rem;
  border-radius: 0.4em;
  display: block;
}
main > aside .nav-area dl dd ul li a:hover {
  background: #F4F4F4;
}

/* ==================================================
main
================================================== */
body:not(#top) #content > *:not(.top-access) {
  padding-top: 60px;
}
body:not(#top) #content > *:not(.top-access) > *:nth-child(n+2) {
  margin-top: 3em;
}
body:not(#top) #content > *:not(.top-access) h2:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) h3:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) h4:nth-child(n+2) {
  margin-top: 2.5em;
}
body:not(#top) #content > *:not(.top-access) h5:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) h6:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) p:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) ul:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) ol:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) dl:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) table:nth-child(n+2) {
  margin-top: 2em;
}
body:not(#top) #content > *:not(.top-access) h1:not([class]) {
  font-size: 3.2rem;
}
body:not(#top) #content > *:not(.top-access) h2:not([class]) {
  font-size: 2.8rem;
  text-align: center;
}
body:not(#top) #content > *:not(.top-access) h3:not([class]) {
  font-size: 2.4rem;
}
body:not(#top) #content > *:not(.top-access) h4:not([class]) {
  font-size: 2rem;
}
body:not(#top) #content > *:not(.top-access) h5:not([class]) {
  font-size: 1.8rem;
}
body:not(#top) #content > *:not(.top-access) ul:not([class]) > *:nth-child(n+2),
body:not(#top) #content > *:not(.top-access) ol:not([class]) > *:nth-child(n+2) {
  margin-top: 1em;
}
body:not(#top) #content > *:not(.top-access) ul:not([class]) > li,
body:not(#top) #content > *:not(.top-access) ol:not([class]) > li {
  position: relative;
  padding-left: 30px;
}
body:not(#top) #content > *:not(.top-access) ul:not([class]) > li::before,
body:not(#top) #content > *:not(.top-access) ol:not([class]) > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  text-align: right;
  padding-right: 10px;
}
body:not(#top) #content > *:not(.top-access) ul:not([class]) > li::before {
  content: "●";
  top: 0.4em;
  font-size: 8px;
}
body:not(#top) #content > *:not(.top-access) ol:not([class]) {
  counter-reset: no;
}
body:not(#top) #content > *:not(.top-access) ol:not([class]) > li {
  counter-increment: no;
}
body:not(#top) #content > *:not(.top-access) ol:not([class]) > li::before {
  content: counter(no);
}

#breadcrumb {
  padding-top: 1em !important;
}
#breadcrumb ul.breadcrumb-list {
  padding: 0.5em 0;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
#breadcrumb li {
  color: #000;
  display: inline;
}
#breadcrumb li a {
  color: #a87b50;
}
#breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -0.2em;
  width: 0.4em;
  height: 0.4em;
  margin: 0 0.6em;
  border: solid;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}

/* sub common
============================== */
.top-access {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.top-access .wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: inherit !important;
}
.top-access .wrap .map-area {
  width: 50%;
}
.top-access .wrap .map-area iframe {
  width: 100%;
  height: 100%;
}
.top-access .wrap .map-area figure {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}
.top-access .wrap .map-area figure img {
  width: 100%;
  max-width: 700px !important;
}
.top-access .wrap .access-info-area {
  padding: 5em 1.5em 5em 5em;
  width: 50%;
}
.top-access .wrap .access-info-area .title-h01 {
  text-align: left;
}
.top-access .wrap .access-info-area .shop-name {
  margin-top: 2em;
  font-size: 2rem;
  position: relative;
}
.top-access .wrap .access-info-area .shop-name::after {
  content: "";
  background: #f08021;
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  bottom: -1em;
  left: 0;
}
.top-access .wrap .access-info-area dl {
  margin-top: 3em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 640px;
}
.top-access .wrap .access-info-area dl dt {
  color: #f08021;
  width: 30%;
  min-width: 120px;
  max-width: 120px;
}
.top-access .wrap .access-info-area dl dt.title {
  width: 100%;
  max-width: inherit;
}
.top-access .wrap .access-info-area dl dd {
  width: 70%;
}
.top-access .wrap .access-info-area dl dd.logo {
  position: relative;
}
.top-access .wrap .access-info-area dl dd.logo::before {
  content: "";
  background: url("../img/logo-sycl.svg") top center/contain no-repeat;
  width: 23%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1000px) {
  .top-access .wrap .access-info-area dl dd {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .top-access .wrap {
    flex-direction: column-reverse;
  }
  .top-access .wrap .map-area {
    width: 100%;
  }
  .top-access .wrap .access-info-area {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }
  .top-access .wrap .access-info-area dl dd {
    width: 70%;
  }
}

.link-area {
  padding-top: 4em;
  padding-bottom: 4em;
}
.link-area .btn-list {
  margin: 0 auto;
  max-width: 850px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.link-area .btn-list.list-center {
  justify-content: center;
}
.link-area .btn-list.list-center li {
  width: 80%;
}
.link-area .btn-list li {
  width: calc(100% / 3 - 10px);
}
.link-area .btn-list li.try-sp {
  width: 550px !important;
}
.link-area .btn-list li.try-sp a {
  padding: 0.8em 0.3em;
  font-size: 2.6rem;
  font-weight: bold;
  border-radius: 4em;
  width: 100%;
  position: relative;
}
.link-area .btn-list li.try-sp a .mark {
  padding: 0.3em 1.5em;
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  background: #E83828;
  border-radius: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -24px;
  left: 21px;
  z-index: 1;
}
.link-area .btn-list li.try-sp a .mark::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 40%;
  bottom: -10px;
  border-style: solid;
  border-color: transparent transparent transparent #E83828;
  border-width: 10px 0 10px 17.32px;
  transform: rotate(70deg);
  z-index: -1;
}
@media (max-width: 1050px) {
  .link-area .btn-list li {
    width: calc(100% / 3 - 10px);
  }
  .link-area .btn-list li:nth-child(n+4) {
    margin-top: 1.5em;
  }
}

.fix-btn-area {
  padding: 1em;
  background: rgba(0, 0, 0, 0.9);
  display: block;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
.fix-btn-area .wrap {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 850px;
}
.fix-btn-area .wrap .fix-btn {
  margin: 0 !important;
  height: 100%;
}
.fix-btn-area .wrap .fix-btn a {
  padding: 0.7em 0.3em;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  line-height: 1.2;
  background: #f08021;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.fix-btn-area .wrap .fix-btn a i {
  margin: 0 0 0 0.5em;
  padding: 0 0 0 0.5em;
  font-size: 120%;
  border-left: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 900px) {
  .fix-btn-area .wrap .fix-btn a {
    font-size: 1.5rem;
  }
}
.fix-btn-area .wrap .fix-btn.tel a {
  color: #f08021;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 2.3rem;
  font-weight: 700;
  background: #fff;
}
.fix-btn-area .wrap .fix-btn.tel a i {
  font-size: 110%;
  border-left: 1px solid #f08021;
}
.fix-btn-area .wrap .fix-btn.try a i {
  font-size: 150%;
}
.fix-btn-area .wrap .fix-btn.try-sp {
  width: 550px !important;
}
.fix-btn-area .wrap .fix-btn.try-sp a {
  padding: 0.8em 0.3em;
  font-size: 2.6rem;
  font-weight: bold;
  border-radius: 4em;
  position: relative;
}
.fix-btn-area .wrap .fix-btn.try-sp a .mark {
  padding: 0.3em 1.5em;
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  background: #E83828;
  border-radius: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -24px;
  left: 21px;
  z-index: 1;
}
.fix-btn-area .wrap .fix-btn.try-sp a .mark::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 40%;
  bottom: -10px;
  border-style: solid;
  border-color: transparent transparent transparent #E83828;
  border-width: 10px 0 10px 17.32px;
  transform: rotate(70deg);
  z-index: -1;
}
.fix-btn-area .wrap .fix-btn.try-sp a i {
  font-size: 150%;
}
.fix-btn-area .wrap .fix-btn.try-sp02 {
  width: calc(100% / 3 - 10px) !important;
}
.fix-btn-area .wrap .fix-btn.try-sp02.red a {
  background: #dc0000;
}
.fix-btn-area .wrap .fix-btn.try-sp02 a {
  padding: 0.5em 0.3em;
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
}
.fix-btn-area .wrap .fix-btn.try-sp02 a .mark {
  padding: 0.3em 1.5em;
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  background: #E83828;
  border-radius: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -24px;
  left: 21px;
  z-index: 1;
}
.fix-btn-area .wrap .fix-btn.try-sp02 a .mark::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 40%;
  bottom: -10px;
  border-style: solid;
  border-color: transparent transparent transparent #E83828;
  border-width: 10px 0 10px 17.32px;
  transform: rotate(70deg);
  z-index: -1;
}
.fix-btn-area .wrap .fix-btn.try-sp02 a i {
  font-size: 150%;
}
@media (max-width: 900px) {
  .fix-btn-area .wrap .fix-btn.try-sp02 a {
    font-size: 2.2rem;
  }
}
.fix-btn-area .wrap .fix-btn.mov a span {
  padding: 0 54px 0 0;
  position: relative;
}
.fix-btn-area .wrap .fix-btn.mov a span::before {
  content: "";
  background: #fff;
  width: 1px;
  height: 120%;
  position: absolute;
  top: -10%;
  right: 44px;
}
.fix-btn-area .wrap .fix-btn.mov a span::after {
  content: "";
  background: #000 url("../img/ico-youtube.svg") center center/65% no-repeat;
  width: 34px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
}
.fix-btn-area .wrap .fix-btn.mov a i {
  font-size: 120%;
}
.fix-btn-area .wrap .tel-area {
  margin: 0 !important;
  width: 32%;
}
.fix-btn-area .wrap .btn-area {
  margin: 0 !important;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.fix-btn-area .wrap .btn-area .fix-btn {
  width: calc(100% / 3 - 10px);
}

.lb-outerContainer {
  width: 80% !important;
  height: auto !important;
  max-width: 800px;
}

.lightbox .lb-image {
  margin: 0 auto;
}

.ps__thumb-y, .ps__thumb-x {
  background: white !important;
  cursor: pointer;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
}

.ps__rail-x, .ps__rail-y {
  opacity: 1 !important;
}

.ps__thumb-x {
  height: 8px !important;
  bottom: 0 !important;
}

.ps--active-x > .ps__rail-x {
  height: 8px !important;
}

/* top
============================== */
#top {
  /* main image slide slick.js
  ============================== */
}
#top .slick-slide {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}
#top .slick-dots {
  margin: 0 !important;
  bottom: 75px !important;
}
#top .slick-dots li {
  min-height: inherit !important;
}
#top .slick-dots li button::before {
  content: "○";
  color: #fff !important;
  font-size: 12px !important;
  opacity: 1 !important;
}
#top .slick-dots li.slick-active button::before {
  content: "●";
  color: #fff !important;
}
#top .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
#top .top-main-area {
  margin: 0 -20px !important;
  padding-top: 8em;
  padding-bottom: 6em;
  background: #f08021;
  position: relative;
  overflow: hidden;
}
#top .top-main-area::before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
}
#top .scr-down {
  color: #fff;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 1.2rem;
  line-height: 1.1;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  display: inline-block;
  height: calc(100% - 50vh);
  position: absolute;
  top: 50vh;
  right: 40px;
  z-index: 5;
}
#top .scr-down a {
  color: #fff;
  text-decoration: none;
}
#top .scr-down::before {
  content: "";
  background: white;
  width: 1px;
  height: calc(100% - 90px);
  position: absolute;
  top: 90px;
  left: 49.5%;
  z-index: 2;
  animation: vertical 3s linear infinite;
}
#top .scr-down::after {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: calc(100% - 90px);
  position: absolute;
  top: 90px;
  left: 49.5%;
  z-index: 1;
}
#top .top-caution {
  padding: 0 20px 2em;
  position: relative;
  z-index: 3;
}
#top .top-caution a {
  display: inline-block;
}
#top .top-caution .txt {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
#top .top-main {
  padding-top: 0 !important;
  position: relative;
  z-index: 2;
}
#top .top-main::before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  width: 200%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -50%;
  z-index: 1;
}
#top .top-main .top-main-mov, #top .top-main .top-main-mov-sp {
  padding-top: 56.25%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
#top .top-main .top-main-mov::before, #top .top-main .top-main-mov-sp::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
#top .top-main .top-main-mov iframe,
#top .top-main .top-main-mov .top-main-mov-wrap, #top .top-main .top-main-mov-sp iframe,
#top .top-main .top-main-mov-sp .top-main-mov-wrap {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#top .top-main .top-main-mov .sp-gif img, #top .top-main .top-main-mov-sp .sp-gif img {
  width: 100%;
}
#top .top-main .top-main-mov .main-txt, #top .top-main .top-main-mov-sp .main-txt {
  padding: 1.3em;
  color: #fff;
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 2px 2px 7px #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#top .top-main .top-main-mov .main-txt .small, #top .top-main .top-main-mov-sp .main-txt .small {
  font-size: 70%;
}
#top .top-main .top-main-mov .main-txt .large, #top .top-main .top-main-mov-sp .main-txt .large {
  padding: 0;
  font-size: 120%;
  display: inline-block;
}
#top .top-main .top-main-mov .main-txt .large02, #top .top-main .top-main-mov-sp .main-txt .large02 {
  font-size: 120%;
}
@media (max-width: 1500px) {
  #top .top-main .top-main-mov .main-txt, #top .top-main .top-main-mov-sp .main-txt {
    font-size: 3.3vw;
  }
}
#top .top-main .top-main-list {
  max-width: inherit;
  position: relative;
  z-index: 3;
}
#top .top-main .top-main-list li {
  line-height: 1.1;
}
#top .top-main .top-main-list li img {
  width: 100%;
}
#top .top-main .top-main-list li a {
  display: block;
  width: 100%;
  height: 100%;
}
#top .top-main .top-main-list li.list01 .box {
  margin: 0 auto;
  background: url("../img/main-img01.jpg") center center/cover no-repeat;
  width: 85%;
  height: 75vh;
  max-height: 640px;
  min-height: 550px;
  position: relative;
}
#top .top-main .top-main-list li.list01 .box .txt {
  color: #fff;
  line-height: 1.4;
  position: absolute;
  top: calc(50% - 8.0em);
  left: -3%;
}
#top .top-main .top-main-list li.list01 .box .txt .jpn {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
#top .top-main .top-main-list li.list01 .box .txt .eng {
  margin-top: 0.5em;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 2rem;
  font-weight: 400;
  display: block;
}
#top .top-main .top-main-list li.list02 .box {
  margin: 0 auto;
  background: url("../../../common/img/bnr/bnr-cp03.jpg") center center/cover no-repeat;
  width: 85%;
  height: 75vh;
  max-height: 640px;
  min-height: 550px;
  position: relative;
}
#top .top-main .top-main-list .slick-next, #top .top-main .top-main-list .slick-prev {
  color: #000;
  border-radius: 100%;
  display: block;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  z-index: 3;
}
#top .top-main .top-main-list .slick-next::before, #top .top-main .top-main-list .slick-prev::before {
  content: "";
  color: #fff;
  border: solid;
  border-width: 2px 2px 0 0;
  width: 0.9em;
  height: 0.9em;
  position: absolute;
}
#top .top-main .top-main-list .slick-next {
  right: 0;
}
#top .top-main .top-main-list .slick-next::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.65em);
  transform: rotate(45deg);
}
#top .top-main .top-main-list .slick-prev {
  left: 0;
}
#top .top-main .top-main-list .slick-prev::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.25em);
  transform: rotate(-135deg);
}
@media (max-width: 1000px) {
  #top .top-main .top-main-list li.list01 .box {
    min-height: 70vh;
  }
  #top .top-main .top-main-list li.list02 .box {
    background: url("../../../common/img/bnr/bnr-cp03-sp.jpg") center center/cover no-repeat;
    min-height: 70vh;
  }
}
#top .cp-bnr-area {
  margin: 4em auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
#top .cp-bnr-area .wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
#top .cp-bnr-area .wrap .bnr {
  text-align: center;
}
#top .cp-bnr-area .wrap .bnr:nth-child(n+2) {
  margin: 1.5em 0 0;
}
#top .top-camp {
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
#top .top-camp .top-camp-list * {
  transition: none;
}
#top .top-camp .top-camp-list .list-item {
  line-height: 1.1;
}
#top .top-camp .top-camp-list .list-item img {
  width: 100%;
}
#top .top-camp .top-camp-list .list-item a {
  display: block;
  width: 100%;
  height: 100%;
}
#top .top-camp .top-camp-list .slick-next, #top .top-camp .top-camp-list .slick-prev {
  color: #000;
  border-radius: 100%;
  display: block;
  width: 50px;
  height: 60px;
  top: 50%;
  z-index: 3;
}
#top .top-camp .top-camp-list .slick-next::before, #top .top-camp .top-camp-list .slick-prev::before {
  content: "";
  color: #fff;
  border: solid;
  border-width: 2px 2px 0 0;
  width: 1.8em;
  height: 1.8em;
  position: absolute;
}
#top .top-camp .top-camp-list .slick-next {
  right: 0;
}
#top .top-camp .top-camp-list .slick-next::before {
  top: calc(50% - 0.9em);
  left: calc(50% - 1.35em);
  transform: rotate(45deg);
}
#top .top-camp .top-camp-list .slick-prev {
  left: 0;
}
#top .top-camp .top-camp-list .slick-prev::before {
  top: calc(50% - 0.9em);
  left: calc(50% - 0.45em);
  transform: rotate(-135deg);
}
#top .top-camp .top-camp-menu-area {
  margin: 4em auto 15px;
  padding: 1em;
  background: rgba(255, 255, 255, 0.9);
  max-width: 940px;
  position: relative;
  z-index: 3;
}
#top .top-camp .top-camp-menu-area .top-camp-menu {
  margin-top: 1em;
}
#top .top-camp .top-camp-menu-area .top-camp-menu * {
  transition: none;
}
#top .top-camp .top-camp-menu-area .top-camp-menu .list-item {
  line-height: 1.1;
  cursor: pointer;
}
#top .top-camp .top-camp-menu-area .top-camp-menu .list-item .box {
  padding: 0 5px;
}
#top .top-camp .top-camp-menu-area .top-camp-menu .list-item .box img {
  border: 3px solid #fff;
  width: 100%;
}
#top .top-camp .top-camp-menu-area .top-camp-menu .list-item .box a {
  display: block;
  width: 100%;
  height: 100%;
}
#top .top-camp .top-camp-menu-area .top-camp-menu .list-item .box .title {
  margin-top: 0.2em;
  color: #f08021;
  font-size: 1.3rem;
  text-align: center;
}
#top .top-camp .top-camp-menu-area .top-camp-menu .slick-track.unset {
  transform: unset !important;
}
#top .top-camp .top-camp-menu-area .top-camp-menu .slick-current .list-item .box img {
  border: 5px solid #f08021;
}
@media (max-width: 1100px) {
  #top .top-camp .top-camp-menu-area {
    margin: 4em 20px -20px;
  }
}
#top .top-tour {
  margin-top: -4em;
  padding: 0 100px;
  position: relative;
  z-index: 3;
}
#top .top-tour .wrap {
  margin: 0 auto;
  padding: 2em;
  background: rgba(255, 255, 255, 0.9);
  max-width: 940px;
}
#top .top-tour .wrap .tour-list {
  margin-top: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#top .top-tour .wrap .tour-list li {
  width: calc(100% / 4 - 10px);
}
#top .top-tour .wrap .tour-list li .no {
  color: #f08021;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.3;
}
#top .top-tour .wrap .btn-tour {
  margin-top: 1.5em;
  text-align: center;
}
#top .top-tour .wrap .btn-tour a {
  padding-bottom: 0.3em;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #f08021;
}
@media (max-width: 950px) {
  #top .top-tour .wrap .tour-list li {
    width: calc(100% / 2 - 10px);
  }
  #top .top-tour .wrap .tour-list li:nth-child(n+3) {
    margin-top: 1.5em;
  }
}
#top .top-about {
  margin: 6em -20px 0;
  max-width: inherit;
  position: relative;
  z-index: 2;
}
#top .top-about .wrap {
  margin: 0 auto;
  max-width: 1500px;
}
#top .top-about .wrap .about-area {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#top .top-about .wrap .about-area .photo-area {
  width: 47.5%;
}
#top .top-about .wrap .about-area .txt-area {
  padding: 0 40px 0 0;
  width: 47.5%;
}
#top .top-about .wrap .about-area .txt-area .title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#top .top-about .wrap .about-area .txt-area .txt {
  margin-top: 3em;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.5;
}
#top .top-about .wrap .about-area .txt-area .logo {
  margin-top: 3em;
}
@media (max-width: 1180px) {
  #top .top-about .wrap .about-area .txt-area .txt {
    margin-top: 2.5em;
    line-height: 2.2;
  }
  #top .top-about .wrap .about-area .txt-area .logo {
    margin-top: 2.5em;
  }
}
@media (max-width: 1050px) {
  #top .top-about {
    margin: 6em 0 0;
  }
  #top .top-about .wrap .about-area {
    flex-direction: column-reverse;
  }
  #top .top-about .wrap .about-area .photo-area {
    margin-top: 4em;
    width: 90%;
  }
  #top .top-about .wrap .about-area .txt-area {
    margin: 0 auto;
    padding: 0 20px;
    width: 80%;
    max-width: 510px;
  }
}
#top .top-workout {
  background: #f08021;
  position: relative;
}
#top .top-workout .wrap-title {
  margin: 0 -20px;
  padding: 10em 20px 14em;
  background: url("../img/workout-bg.jpg") center top/cover no-repeat;
  max-width: inherit;
}
#top .top-workout .wrap-title .title-h01 {
  margin-top: 3em;
}
#top .top-workout .wrap-title .copy01 {
  color: #fff;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #top .top-workout .wrap-title .copy01 {
    font-size: 3rem;
  }
}
#top .top-workout .wrap {
  margin: -5em auto 0;
  position: relative;
  z-index: 5;
}
#top .top-workout .wrap .box {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 940px;
}
#top .top-workout .wrap .box .mov-area {
  padding: 2em;
  background: rgba(255, 255, 255, 0.9);
}
#top .top-workout .wrap .box .mov-area .copy02 {
  color: #f08021;
  font-size: 4.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
#top .top-workout .wrap .box .mov-area .copy03 {
  margin-top: 0.2em;
  color: #f08021;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
#top .top-workout .wrap .box .mov-area .mov {
  margin: 1.5em 0 0;
  padding-top: 56.25%;
  width: 100%;
  max-width: 1000px;
  position: relative;
}
#top .top-workout .wrap .box .mov-area .mov iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#top .top-workout .wrap .box .hiit-txt {
  margin-top: 2em;
  color: #fff;
  font-size: 1.6rem;
}
#top .top-workout .wrap .box .hiit-area {
  margin-top: 3em;
  padding: 2em;
  border: 1px solid #fff;
}
#top .top-workout .wrap .box .hiit-area .title {
  margin: -2em auto 0;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  background: #f08021;
  display: block;
  max-width: 300px;
}
#top .top-workout .wrap .box .hiit-area .txt {
  margin: 2em 0 0;
  color: #fff;
}
#top .top-workout .wrap .box .workout-list {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#top .top-workout .wrap .box .workout-list li {
  padding: 1em 1em 1em 80px;
  background: rgba(255, 255, 255, 0.1);
  width: calc(100% / 2 - 15px);
  position: relative;
}
#top .top-workout .wrap .box .workout-list li::before {
  content: "";
  background: url("../img/flow-phone.png") center center/contain no-repeat;
  display: block;
  width: 65px;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
  transform: rotate(-17deg);
}
#top .top-workout .wrap .box .workout-list li:nth-child(n+3) {
  margin-top: 1em;
}
#top .top-workout .wrap .box .workout-list li .title {
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
}
#top .top-workout .wrap .box .workout-list li .txt {
  margin-top: 0.2em;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
}
@media (max-width: 1000px) {
  #top .top-workout .wrap .box .mov-area .copy02 {
    font-size: 4rem;
  }
  #top .top-workout .wrap .box .mov-area .copy03 {
    font-size: 2rem;
  }
}
#top .top-workout02 {
  margin-top: -80px;
  padding-bottom: 4em;
  background: #f08021;
  position: relative;
}
#top .top-workout02 .wrap-title {
  margin: 0 -20px;
  padding: 30em 40px 2em;
  background: url("../img/workout02-bg.png") center center/cover no-repeat;
  max-width: inherit;
  position: relative;
}
#top .top-workout02 .wrap-title::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#top .top-workout02 .wrap-title .title {
  margin: 0 auto;
  padding: 0.3em;
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  border-bottom: 1px solid #fff;
  max-width: 280px;
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
  z-index: 4;
}
#top .top-workout02 .wrap-title .title::before {
  content: "";
  background: #fff;
  width: 1px;
  height: 200%;
  position: absolute;
  bottom: 0;
  left: -15px;
  transform: skewX(15deg);
}
#top .top-workout02 .wrap-title .title::after {
  content: "";
  border-top: solid 6px transparent;
  border-right: solid 6px transparent;
  border-bottom: solid 6px transparent;
  border-left: solid 6px #fff;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -7px;
  right: -10px;
}
#top .top-workout02 .wrap-title .burn-area {
  margin: 0 auto;
  padding: 1.5em;
  background: rgba(0, 0, 0, 0.3);
  max-width: 900px;
  position: relative;
  z-index: 3;
}
#top .top-workout02 .wrap-title .burn-area .txt {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}
#top .top-workout02 .wrap {
  margin: 3em auto 0;
}
#top .top-workout02 .wrap .box {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 940px;
}
#top .top-workout02 .wrap .box .workout-list {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#top .top-workout02 .wrap .box .workout-list li {
  padding: 1em 1em 1em 80px;
  background: rgba(255, 255, 255, 0.1);
  width: calc(100% / 2 - 15px);
  position: relative;
}
#top .top-workout02 .wrap .box .workout-list li::before {
  content: "";
  background: url("../img/flow-phone.png") center center/contain no-repeat;
  display: block;
  width: 65px;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
  transform: rotate(-17deg);
}
#top .top-workout02 .wrap .box .workout-list li:nth-child(n+3) {
  margin-top: 1em;
}
#top .top-workout02 .wrap .box .workout-list li .title {
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
}
#top .top-workout02 .wrap .box .workout-list li .txt {
  margin-top: 0.2em;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
}
#top .top-reason {
  padding-top: 4em;
  padding-bottom: 4em;
  background: #efefef;
}
#top .top-reason .wrap {
  max-width: 1200px;
}
#top .top-reason .wrap .reason-list {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#top .top-reason .wrap .reason-list li {
  background: #f08021;
  width: calc(100% / 2 - 20px);
  position: relative;
}
#top .top-reason .wrap .reason-list li:nth-child(n+3) {
  margin-top: 3em;
}
#top .top-reason .wrap .reason-list li .no {
  padding: 0.4em 0 0 0.4em;
  color: #fff;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #f08021 50.5%) no-repeat top left/100% 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#top .top-reason .wrap .reason-list li .photo img {
  width: 100%;
}
#top .top-reason .wrap .reason-list li .title {
  padding: 1em 25px 0;
  color: #fff;
  font-size: 2.4rem;
}
#top .top-reason .wrap .reason-list li .txt-wrap {
  padding: 1.5em 25px;
}
#top .top-reason .wrap .reason-list li .txt-wrap .txt {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 1280px) {
  #top .top-reason .wrap .reason-list li {
    width: calc(100% / 2 - 15px);
  }
}
#top .top-stremgth {
  background: #f08021 url("../img/strength-bg.jpg") center top/100% no-repeat;
  position: relative;
  overflow: visible;
}
#top .top-stremgth .copy {
  padding-top: 2em;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
#top .top-stremgth .copy p {
  color: #fff;
  line-height: 1.4;
  width: 47.5%;
}
#top .top-stremgth .copy p .jpn {
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#top .top-stremgth .copy p .eng {
  margin-top: 0.5em;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 2rem;
  font-weight: 500;
  display: block;
}
#top .top-stremgth .wrap {
  padding-bottom: 4em;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
#top .top-stremgth .wrap .box {
  width: 84%;
}
#top .top-stremgth .wrap .box .title-h01 {
  text-align: left;
}
#top .top-stremgth .wrap .box .stremgth-list {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#top .top-stremgth .wrap .box .stremgth-list::before {
  content: "";
  display: block;
  width: calc(100% / 3 - 20px);
  height: 0;
  order: 1;
}
#top .top-stremgth .wrap .box .stremgth-list::after {
  content: "";
  display: block;
  width: calc(100% / 3 - 20px);
  height: 0;
}
#top .top-stremgth .wrap .box .stremgth-list li {
  background: #fff;
  width: calc(100% / 3 - 20px);
}
#top .top-stremgth .wrap .box .stremgth-list li:nth-child(2) {
  margin-top: 40px;
}
#top .top-stremgth .wrap .box .stremgth-list li:nth-child(3) {
  margin-top: 80px;
}
#top .top-stremgth .wrap .box .stremgth-list li:nth-child(4) {
  margin-top: -40px;
}
#top .top-stremgth .wrap .box .stremgth-list li:nth-child(5) {
  margin-top: 0;
}
#top .top-stremgth .wrap .box .stremgth-list li:nth-child(6) {
  margin-top: 40px;
}
#top .top-stremgth .wrap .box .stremgth-list li .title-area {
  margin: 1.5em;
  position: relative;
}
#top .top-stremgth .wrap .box .stremgth-list li .title-area .title {
  padding-right: 45px;
  font-size: 2rem;
  min-height: 65px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#top .top-stremgth .wrap .box .stremgth-list li .title-area .no {
  color: #f08021;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  position: absolute;
  top: 0;
  right: 0;
}
#top .top-stremgth .wrap .box .stremgth-list li .txt-area {
  margin: 0 1.5em;
  padding: 1.5em 0;
  border-top: 1px solid #f08021;
}
@media (max-width: 1050px) {
  #top .top-stremgth {
    padding-top: 7em;
    background: #f08021 url("../img/strength-bg.jpg") right top/200% no-repeat;
  }
  #top .top-stremgth .copy {
    padding-top: 0;
  }
  #top .top-stremgth .copy p {
    width: 55.5%;
  }
  #top .top-stremgth .copy p .jpn {
    font-size: 5rem;
  }
  #top .top-stremgth .copy p .eng {
    font-size: 1.8rem;
  }
  #top .top-stremgth .wrap {
    margin-top: 5%;
  }
  #top .top-stremgth .wrap .box {
    width: 95%;
  }
  #top .top-stremgth .wrap .box .stremgth-list::before {
    width: calc(100% / 3 - 15px);
  }
  #top .top-stremgth .wrap .box .stremgth-list::after {
    width: calc(100% / 3 - 15px);
  }
  #top .top-stremgth .wrap .box .stremgth-list li {
    width: calc(100% / 3 - 15px);
  }
  #top .top-stremgth .wrap .box .stremgth-list li .txt-area {
    font-size: 1.3rem;
  }
}
#top .top-stremgth02 {
  padding-top: 14em;
  background: #f08021 url("../img/strength-bg.jpg") center top/100% no-repeat;
  position: relative;
  overflow: visible;
}
#top .top-stremgth02 .wrap {
  padding-bottom: 4em;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
#top .top-stremgth02 .wrap .box {
  width: 84%;
}
#top .top-stremgth02 .wrap .box .title-h01 {
  text-align: left;
}
#top .top-stremgth02 .wrap .box .stremgth-list {
  margin-top: 8em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#top .top-stremgth02 .wrap .box .stremgth-list::before {
  content: "";
  display: block;
  width: calc(100% / 3 - 20px);
  height: 0;
  order: 1;
}
#top .top-stremgth02 .wrap .box .stremgth-list::after {
  content: "";
  display: block;
  width: calc(100% / 3 - 20px);
  height: 0;
}
#top .top-stremgth02 .wrap .box .stremgth-list li {
  background: #fff;
  width: calc(100% / 3 - 20px);
}
#top .top-stremgth02 .wrap .box .stremgth-list li:nth-child(2) {
  margin-top: 40px;
}
#top .top-stremgth02 .wrap .box .stremgth-list li:nth-child(3) {
  margin-top: 80px;
}
#top .top-stremgth02 .wrap .box .stremgth-list li:nth-child(4) {
  margin-top: -40px;
}
#top .top-stremgth02 .wrap .box .stremgth-list li:nth-child(5) {
  margin-top: 0;
}
#top .top-stremgth02 .wrap .box .stremgth-list li:nth-child(6) {
  margin-top: 40px;
}
#top .top-stremgth02 .wrap .box .stremgth-list li .title-area {
  margin: 1.5em;
  position: relative;
}
#top .top-stremgth02 .wrap .box .stremgth-list li .title-area .title {
  padding-right: 45px;
  font-size: 2rem;
  min-height: 65px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#top .top-stremgth02 .wrap .box .stremgth-list li .title-area .no {
  color: #f08021;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  position: absolute;
  top: 0;
  right: 0;
}
#top .top-stremgth02 .wrap .box .stremgth-list li .txt-area {
  margin: 0 1.5em;
  padding: 1.5em 0;
  border-top: 1px solid #f08021;
}
@media (max-width: 1050px) {
  #top .top-stremgth02 {
    padding-top: 14em;
    background: #f08021 url("../img/strength-bg.jpg") right top/180% no-repeat;
  }
  #top .top-stremgth02 .copy {
    padding-top: 0;
  }
  #top .top-stremgth02 .copy p {
    width: 55.5%;
  }
  #top .top-stremgth02 .copy p .jpn {
    font-size: 5rem;
  }
  #top .top-stremgth02 .copy p .eng {
    font-size: 1.8rem;
  }
  #top .top-stremgth02 .wrap {
    margin-top: 5%;
  }
  #top .top-stremgth02 .wrap .box {
    width: 95%;
  }
  #top .top-stremgth02 .wrap .box .stremgth-list::before {
    width: calc(100% / 3 - 15px);
  }
  #top .top-stremgth02 .wrap .box .stremgth-list::after {
    width: calc(100% / 3 - 15px);
  }
  #top .top-stremgth02 .wrap .box .stremgth-list li {
    width: calc(100% / 3 - 15px);
  }
  #top .top-stremgth02 .wrap .box .stremgth-list li .txt-area {
    font-size: 1.3rem;
  }
}
#top .top-be-af {
  padding-bottom: 6em;
  background: #f08021;
}
#top .top-be-af .wrap-title {
  margin: 0 -20px;
  padding: 10em 20px 14em;
  background: url("../img/be-af-bg.jpg") center top/cover no-repeat;
  max-width: inherit;
}
@media (min-width: 1600px) {
  #top .top-be-af .wrap-title {
    padding: 10% 20px 15%;
  }
}
#top .top-be-af .wrap {
  margin: -5em auto 0;
  padding: 0 20px;
}
#top .top-be-af .wrap .be-af-list {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 940px;
}
#top .top-be-af .wrap .be-af-list li {
  width: calc(100% / 2 - 20px);
}
#top .top-be-af .wrap .be-af-list li:nth-child(n+3) {
  margin-top: 2em;
}
#top .top-studio02 {
  padding-top: 4em;
  padding-bottom: 4em;
  background: #f08021;
}
#top .top-studio02 .wrap {
  padding: 0 20px;
}
#top .top-studio02 .wrap .studio-map {
  margin: 2em auto 0;
  max-width: 940px;
}
#top .top-studio02 .wrap .studio-map .studio-atn {
  color: #fff;
  position: relative;
}
#top .top-studio02 .wrap .studio-map .studio-atn i {
  margin-right: 0.3em;
}
#top .top-studio02 .wrap .studio-map .map-area {
  margin: 0.3em 0;
  position: relative;
}
#top .top-studio02 .wrap .studio-map .map-area .map img {
  width: 100%;
}
#top .top-studio02 .wrap .studio-map .map-area .studio-img {
  color: #fff;
  font-size: 1.8rem;
  background: #f08021;
  border: 2px solid #fff;
  border-radius: 4em;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
}
#top .top-studio02 .wrap .studio-map .map-area .studio-img a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#top .top-studio02 .wrap .studio-map .map-area .studio-img.img01 {
  top: 72%;
  left: 80%;
}
#top .top-studio02 .wrap .studio-map .map-area .studio-img.img02 {
  top: 36%;
  left: 55%;
}
#top .top-studio02 .wrap .studio-map .map-area .studio-img.img03 {
  top: 18%;
  left: 86%;
}
#top .top-studio02 .wrap .studio-map .map-area .studio-img.img04 {
  top: 15%;
  left: 24%;
}
#top .top-studio02 .wrap .studio-map .txt {
  color: #fff;
  font-size: 1.6rem;
}
#top .top-studio02 .wrap .studio-list {
  margin: 3em auto 0;
  max-width: 900px;
}
#top .top-studio02 .wrap .studio-list li {
  background: #fff;
}
#top .top-studio02 .wrap .studio-list li:nth-child(n+2) {
  margin-top: 3em;
}
#top .top-studio02 .wrap .studio-list li .txt-area {
  padding: 1.5em;
}
#top .top-studio02 .wrap .studio-list li .txt-area .title {
  color: #f08021;
  font-size: 2.4rem;
}
#top .top-studio02 .wrap .studio-list li .txt-area .txt {
  margin-top: 0.5em;
  font-size: 1.5rem;
  line-height: 1.6;
}
#top .top-studio {
  padding-top: 3em;
  padding-bottom: 3em;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #f08021;
}
#top .top-studio .wrap .studio-list {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#top .top-studio .wrap .studio-list li {
  width: 50%;
}
#top .top-studio .wrap .studio-list li figure {
  position: relative;
}
#top .top-studio .wrap .studio-list li figure .plus {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
#top .top-studio .wrap .studio-list li figure .plus::before, #top .top-studio .wrap .studio-list li figure .plus::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-top: 1px solid #fff;
  transform: translateX(-50%);
}
#top .top-studio .wrap .studio-list li figure .plus::after {
  top: 2px;
  left: -7px;
  transform: rotate(90deg);
}
#top .top-flow {
  padding-top: 3em;
  padding-bottom: 3em;
  padding-right: 0;
  background: #f08021;
}
#top .top-flow .wrap {
  padding: 0 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow-x: inherit;
}
#top .top-flow .wrap .flow-info-area {
  width: 35%;
}
#top .top-flow .wrap .flow-info-area .title-h01 {
  text-align: left;
}
#top .top-flow .wrap .flow-info-area .title {
  margin-top: 1em;
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.1em;
}
#top .top-flow .wrap .flow-info-area .reserve-box {
  margin-top: 2.5em;
  padding: 1em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  width: 90%;
  max-width: 415px;
  position: relative;
}
#top .top-flow .wrap .flow-info-area .reserve-box::after {
  content: "";
  background: url("../img/flow-phone.png") center top/contain no-repeat;
  display: block;
  width: 90px;
  height: 130px;
  position: absolute;
  bottom: -5px;
  right: -10%;
}
#top .top-flow .wrap .flow-info-area .reserve-box .reserve-title {
  font-size: 2.4rem;
  padding-right: 40px;
}
#top .top-flow .wrap .flow-info-area .reserve-box .txt {
  margin-top: 0.5em;
  padding-right: 50px;
  line-height: 1.4;
}
#top .top-flow .wrap .flow-list-area {
  width: 62.5%;
}
#top .top-flow .wrap .flow-list-area .box {
  padding-bottom: 2em;
  width: 100%;
  overflow-x: auto;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  position: relative;
  /*&::-webkit-scrollbar {
  	width: 8px;
  	height: 8px;
  }
  &::-webkit-scrollbar-track {
  	background: rgba(255,255,255,0.2);
  	border-left: solid 1px #ececec;
  	border-radius: 10px;
  }
  &::-webkit-scrollbar-thumb {
  	background: #fff;
  	border-radius: 10px;
  	box-shadow: inset 0 0 0 2px #fff;
  }*/
}
#top .top-flow .wrap .flow-list-area .box .flow-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
#top .top-flow .wrap .flow-list-area .box .flow-list li {
  color: #fff;
  width: 380px;
  min-width: 380px;
  white-space: normal;
}
#top .top-flow .wrap .flow-list-area .box .flow-list li:nth-child(n+2) {
  margin-left: 1.5em;
}
#top .top-flow .wrap .flow-list-area .box .flow-list li figure {
  position: relative;
}
#top .top-flow .wrap .flow-list-area .box .flow-list li figure .no {
  padding: 0.5em;
  font-family: "Roboto", Arial, "Arial Black", Verdana, "sans-serif";
  font-size: 2.4rem;
  background: #f08021;
  line-height: 1.1;
  position: absolute;
  bottom: -1px;
  left: -1px;
}
#top .top-flow .wrap .flow-list-area .box .flow-list li .title {
  margin-top: 0.5em;
  font-size: 2.4rem;
}
#top .top-flow .wrap .flow-list-area .box .flow-list li .txt {
  margin-top: 0.5em;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (min-width: 1501px) {
  #top .top-flow .wrap {
    flex-wrap: nowrap;
    min-height: 520px;
    position: relative;
  }
  #top .top-flow .wrap .flow-info-area {
    min-width: 390px;
  }
  #top .top-flow .wrap .flow-list-area {
    width: calc((100vw - 1500px) / 2 + (1500px - 35%) - 20px);
    position: absolute;
    top: 0;
    left: calc(50% - 15%);
  }
}
@media (max-width: 970px) {
  #top .top-flow .wrap .flow-info-area {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }
  #top .top-flow .wrap .flow-info-area .title-h01 {
    width: 100%;
  }
  #top .top-flow .wrap .flow-info-area .reserve-box {
    margin-right: 20px;
    max-width: 345px;
  }
  #top .top-flow .wrap .flow-list-area {
    margin-top: 3em;
    width: 100%;
  }
  #top .top-flow .wrap .flow-list-area .box .flow-list li {
    width: 350px;
    min-width: 350px;
  }
}
#top .top-social {
  padding-top: 3em;
  padding-bottom: 3em;
}
#top .top-social .wrap .social-list-area {
  margin: 3em auto 0;
  max-width: 1100px;
}
#top .top-social .wrap .social-list-area .social-list li .txt {
  margin-top: 0.5em;
}
#top .top-social .wrap .social-list-area .social-list li .txt-sns {
  margin-top: 0.5em;
  color: #f08021;
  font-size: 2.4rem;
}
#top .top-social .wrap .social-list-area .social-list li .txt-sns a {
  color: #f08021;
}
#top .top-voice {
  padding-top: 3em;
  padding-bottom: 3em;
}
#top .top-voice .wrap .voice-list-area {
  margin: 3em auto 0;
  max-width: 900px;
}
#top .top-voice .wrap .voice-list-area .voice-list li .title {
  margin-top: 0.5em;
}
#top .top-voice .wrap .voice-list-area .voice-list li .txt {
  margin-top: 0.5em;
}
#top .top-price02 {
  padding-top: 4em;
  padding-bottom: 4em;
  background: #efefef;
}
#top .top-price02 .wrap {
  max-width: 950px;
}
#top .top-price02 .wrap .sale-area {
  margin: 1.5em auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 560px;
}
#top .top-price02 .wrap .sale-area .sale-date {
  width: 30%;
}
#top .top-price02 .wrap .sale-area .txt-sale {
  color: #FF0000;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 65%;
}
#top .top-price02 .wrap .sale-area .txt-sale .txt-atn {
  color: #333;
  font-size: 1.4rem;
}
#top .top-price02 .wrap .sale-area02 {
  margin: 1em 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#top .top-price02 .wrap .sale-area02 .photo-area .photo {
  max-width: 140px;
}
#top .top-price02 .wrap .sale-area02 .txt-area {
  margin: 0 0 0 1em;
}
#top .top-price02 .wrap .sale-area02 .txt-area .txt {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
#top .top-price02 .wrap .sale-area02 .price-area {
  margin: 0 0 0 1em;
}
#top .top-price02 .wrap .sale-area02 .price-area .price {
  color: #FF0000;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.2em;
}
#top .top-price02 .wrap .sale-area02 .price-area .price .large {
  font-size: 500%;
}
#top .top-price02 .wrap .sale-area02 .kigen {
  text-align: center;
  width: 100%;
}
#top .top-price02 .wrap .sale-area02 .kigen .txt {
  padding: 0.5em 1em;
  color: #fff;
  line-height: 1.2;
  background: #f08021;
  border-radius: 4em;
  display: inline-block;
}
#top .top-price02 .wrap .txt-sale {
  color: #FF0000;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
#top .top-price02 .wrap .option-copy {
  margin-top: 3em;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
#top .top-price02 .wrap .price-list {
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#top .top-price02 .wrap .price-list .list-item {
  background: #fff;
  width: calc(100% / 2 - 15px);
  position: relative;
}
#top .top-price02 .wrap .price-list .list-item:nth-child(n+3) {
  margin-top: 2.5em;
}
#top .top-price02 .wrap .price-list .list-item.w100 {
  width: 100%;
}
#top .top-price02 .wrap .price-list .list-item .capacity {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  background: #ff0000;
  border-radius: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: absolute;
  top: -33px;
  left: -10px;
}
#top .top-price02 .wrap .price-list .list-item .capacity .capacity-wrap {
  text-align: center;
}
#top .top-price02 .wrap .price-list .list-item .capacity .capacity-wrap .large {
  font-size: 130%;
}
#top .top-price02 .wrap .price-list .list-item .capacity02 {
  color: #ff0000;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  position: absolute;
  top: -33px;
  left: 10px;
}
#top .top-price02 .wrap .price-list .list-item .title {
  padding: 0.2em 0.5em;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
  background: #f08021;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}
#top .top-price02 .wrap .price-list .list-item .title.black {
  background: #333;
}
#top .top-price02 .wrap .price-list .list-item .price-area {
  padding: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .top-price02 .wrap .price-list .list-item .price-area .box {
  line-height: 1.6;
}
#top .top-price02 .wrap .price-list .list-item .price-area .box .cate {
  color: #f08021;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
#top .top-price02 .wrap .price-list .list-item .price-area .box .price {
  font-size: 2rem;
  font-weight: bold;
}
#top .top-price02 .wrap .price-list .list-item .price-area .box .price .txt-large {
  font-size: 140%;
}
#top .top-price02 .wrap .price-list .list-item .price-area .box .tax {
  font-size: 1.3rem;
  text-align: right;
}
#top .top-price02 .wrap .price-list .list-item .info-area {
  margin: 0 1.5em;
  padding: 1.5em 0;
  border-top: 1px solid #ccc;
}
#top .top-price02 .wrap .price-list .list-item .info-area .info-data {
  margin: 0 0 0.5em;
  line-height: 1.4;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#top .top-price02 .wrap .price-list .list-item .info-area .info-data dt {
  padding: 0.2em 0.5em;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  background: #f08021;
  display: inline-block;
}
#top .top-price02 .wrap .price-list .list-item .info-area .info-data dd {
  padding: 0 0 0 0.5em;
  font-size: 1.4rem;
}
#top .top-price02 .wrap .price-list .list-item .info-area .info-txt {
  line-height: 1.6;
}
#top .top-price02 .wrap .price-list .list-item .info-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#top .top-price02 .wrap .price-list .list-item .info-col .txt-area {
  width: 67.5%;
}
#top .top-price02 .wrap .price-list .list-item .info-col .photo-area {
  width: 30%;
}
#top .top-price {
  padding-top: 3em;
  padding-bottom: 3em;
  background: #efefef;
}
#top .top-price .wrap {
  max-width: 950px;
}
#top .top-price .wrap .sale-area {
  margin: 1.5em auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 560px;
}
#top .top-price .wrap .sale-area .sale-date {
  width: 30%;
}
#top .top-price .wrap .sale-area .txt-sale {
  color: #FF0000;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  width: 65%;
}
#top .top-price .wrap .sale-area .txt-sale .txt-atn {
  color: #333;
  font-size: 1.4rem;
}
#top .top-price .wrap .txt-sale {
  color: #FF0000;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
#top .top-price .wrap .table-wrap table {
  margin-top: 2em;
}
#top .top-price .wrap .table-wrap table th {
  min-width: 110px;
}
#top .top-price .wrap .table-wrap table .h01 {
  min-width: 80px;
}
#top .top-price .wrap .txt-large {
  font-size: 160%;
}
#top .top-price .wrap .price-btn-list {
  margin: 3em auto 0;
  max-width: 650px;
  justify-content: center;
}
#top .top-coach {
  padding-top: 3em;
  padding-bottom: 3em;
  background: #f08021;
}
#top .top-coach .coach-list {
  margin-top: 3em;
  padding: 0 30px;
}
#top .top-coach .coach-list * {
  transition: none;
}
#top .top-coach .coach-list li {
  padding: 0 10px;
  color: #fff;
  line-height: 1.4;
}
#top .top-coach .coach-list li .job {
  margin-top: 0.5em;
  font-size: 1.6rem;
}
#top .top-coach .coach-list li .name {
  font-size: 2.4rem;
  font-weight: 700;
}
#top .top-coach .coach-list .slick-next, #top .top-coach .coach-list .slick-prev {
  color: #000;
  border-radius: 100%;
  display: block;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  z-index: 3;
}
#top .top-coach .coach-list .slick-next::before, #top .top-coach .coach-list .slick-prev::before {
  content: "";
  color: #fff;
  border: solid;
  border-width: 2px 2px 0 0;
  width: 0.9em;
  height: 0.9em;
  position: absolute;
}
#top .top-coach .coach-list .slick-next {
  right: -20px;
}
#top .top-coach .coach-list .slick-next::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.65em);
  transform: rotate(45deg);
}
#top .top-coach .coach-list .slick-prev {
  left: -20px;
}
#top .top-coach .coach-list .slick-prev::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.25em);
  transform: rotate(-135deg);
}
#top .top-coach02 {
  padding-top: 3em;
  padding-bottom: 3em;
  background: #f08021;
}
#top .top-coach02 .coach-list {
  margin-top: 3em;
  padding: 0 30px;
}
#top .top-coach02 .coach-list * {
  transition: none;
}
#top .top-coach02 .coach-list li {
  padding: 0 18px;
  line-height: 1.5;
}
#top .top-coach02 .coach-list li .title-area {
  padding: 1em 1.2em;
  line-height: 1.4;
  background: #c9700f;
}
#top .top-coach02 .coach-list li .title-area .job {
  color: #fff;
  font-size: 1.5rem;
}
#top .top-coach02 .coach-list li .title-area .name {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
}
#top .top-coach02 .coach-list li .box {
  padding: 0 1.2em 1em;
  background: #fff;
  height: 100%;
}
#top .top-coach02 .coach-list li .box .profile-list {
  padding-top: 1em;
}
#top .top-coach02 .coach-list li .box .profile-list dt {
  color: #f08021;
  font-size: 1.4rem;
}
#top .top-coach02 .coach-list li .box .profile-list dd {
  margin-top: 0.5em;
  font-size: 1.3rem;
}
#top .top-coach02 .coach-list li .box .txt {
  padding-top: 1em;
  font-size: 1.3rem;
}
#top .top-coach02 .coach-list .slick-next, #top .top-coach02 .coach-list .slick-prev {
  color: #000;
  border-radius: 100%;
  display: block;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  z-index: 3;
}
#top .top-coach02 .coach-list .slick-next::before, #top .top-coach02 .coach-list .slick-prev::before {
  content: "";
  color: #fff;
  border: solid;
  border-width: 2px 2px 0 0;
  width: 0.9em;
  height: 0.9em;
  position: absolute;
}
#top .top-coach02 .coach-list .slick-next {
  right: -20px;
}
#top .top-coach02 .coach-list .slick-next::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.65em);
  transform: rotate(45deg);
}
#top .top-coach02 .coach-list .slick-prev {
  left: -20px;
}
#top .top-coach02 .coach-list .slick-prev::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.25em);
  transform: rotate(-135deg);
}
#top .top-staff {
  padding-top: 3em;
  padding-bottom: 3em;
  background: #f08021;
}
#top .top-staff .staff-list {
  margin-top: 3em;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
#top .top-staff .staff-list * {
  transition: none;
}
#top .top-staff .staff-list li {
  padding: 0 10px;
  color: #fff;
  line-height: 1.4;
  max-width: 400px;
}
#top .top-staff .staff-list li .job {
  margin-top: 0.5em;
  font-size: 1.6rem;
}
#top .top-staff .staff-list li .name {
  font-size: 2.4rem;
  font-weight: 700;
}
#top .top-staff .staff-list .slick-next, #top .top-staff .staff-list .slick-prev {
  color: #000;
  border-radius: 100%;
  display: block;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  z-index: 3;
}
#top .top-staff .staff-list .slick-next::before, #top .top-staff .staff-list .slick-prev::before {
  content: "";
  color: #fff;
  border: solid;
  border-width: 2px 2px 0 0;
  width: 0.9em;
  height: 0.9em;
  position: absolute;
}
#top .top-staff .staff-list .slick-next {
  right: -20px;
}
#top .top-staff .staff-list .slick-next::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.65em);
  transform: rotate(45deg);
}
#top .top-staff .staff-list .slick-prev {
  left: -20px;
}
#top .top-staff .staff-list .slick-prev::before {
  top: calc(50% - 0.45em);
  left: calc(50% - 0.25em);
  transform: rotate(-135deg);
}
#top .top-law {
  padding-top: 4em;
  padding-bottom: 4em;
  background: #efefef;
}
#top .top-law .wrap {
  max-width: 950px;
}
#top .top-law .wrap .law-list {
  margin: 3em 0 0;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#top .top-law .wrap .law-list dt {
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
  width: 30%;
}
#top .top-law .wrap .law-list dd {
  padding: 0.5em;
  word-wrap: break-word;
  border-bottom: 1px solid #ccc;
  width: 70%;
}
#top .top-law .btn.small {
  padding: 0.8em 1.8em 0.8em 0.8em !important;
  font-size: 1.4rem;
  border-radius: 0.4em;
}
#top .top-form {
  padding-top: 4em;
  padding-bottom: 6em;
  background: url("../img/contact-bg.jpg") center center/cover no-repeat;
  position: relative;
}
#top .top-form::before {
  content: "";
  background: rgba(240, 128, 33, 0.97);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#top .top-form .wrap {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

/* company
============================== */
/* wp pager
============================== */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3em !important;
}
.wp-pagenavi > * {
  margin-top: 5px;
  margin-left: 10px;
  padding: 1em !important;
  color: #fff !important;
  font-size: 1.3rem;
  line-height: 1;
  background: #000 !important;
  border: 1px solid #000 !important;
}
.wp-pagenavi > *:first-child {
  margin-left: 0;
}
.wp-pagenavi a,
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  color: #000 !important;
  text-decoration: none;
  background: #fff !important;
}
.wp-pagenavi a:hover {
  color: #fff !important;
  background: #000 !important;
  opacity: 1;
}

/* contact catalog
============================== */
.form-area {
  padding-top: 4em !important;
  padding-bottom: 6em !important;
  background: url("../img/contact-bg.jpg") center center/cover no-repeat;
  position: relative;
}
.form-area::before {
  content: "";
  background: rgba(240, 128, 33, 0.97);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.form-area .wrap {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.form-area article {
  position: relative;
  z-index: 2;
}

.top-form p,
.form-area p {
  margin: 0 0 40px;
  color: #fff;
  line-height: 1.8;
  position: relative;
}
.top-form > p,
.form-area > p {
  background: #fff;
  margin: 0 -10px 60px;
  padding: 20px 0;
  position: relative;
}
.top-form > p a,
.form-area > p a {
  display: block;
  padding: 16px 10px;
  border-radius: 4px;
  max-width: 230px;
  background: #192133;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 25px;
}
.top-form > p a:hover,
.form-area > p a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.top-form form h3,
.form-area form h3 {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 0 20px;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.top-form form .sub-copy,
.form-area form .sub-copy {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.top-form form > .caution,
.form-area form > .caution {
  max-width: 800px;
  margin: 0 auto 40px;
  border: 1px dotted #fff;
  padding: 16px;
}
.top-form form > .caution p,
.form-area form > .caution p {
  margin: 0;
  font-size: 1.3rem;
}
.top-form form > .caution .caution-list,
.form-area form > .caution .caution-list {
  margin: 20px auto 0;
}
.top-form form > .caution .caution-list li,
.form-area form > .caution .caution-list li {
  padding: 0 0 0 20px;
  position: relative;
}
.top-form form > .caution .caution-list li:nth-child(n+2),
.form-area form > .caution .caution-list li:nth-child(n+2) {
  margin-top: 0.5em;
}
.top-form form > .caution .caution-list li::before,
.form-area form > .caution .caution-list li::before {
  content: "●";
  font-size: 1.1rem;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.top-form form > .caution2,
.form-area form > .caution2 {
  max-width: 800px;
  margin: 0 auto 40px;
  border: 1px dotted #fff;
  padding: 16px;
}
.top-form form > .caution2 p,
.form-area form > .caution2 p {
  margin: 0;
  font-size: 1.3rem;
}
.top-form form .mark-must,
.form-area form .mark-must {
  margin: 0.5em 0.5em 0.5em 0;
  padding: 0.4em;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  background: #FF0000;
}
.top-form form .mark-any,
.form-area form .mark-any {
  margin: 0.5em 0.5em 0.5em 0;
  padding: 0.4em;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  border: 1px solid #fff;
}
.top-form form ul,
.form-area form ul {
  max-width: 800px;
  margin: 30px auto;
}
.top-form form ul li,
.form-area form ul li {
  margin: 0 0 2em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}
.top-form form ul li input.name,
.form-area form ul li input.name {
  max-width: 300px;
  margin-right: 3.0769230769%;
}
.top-form form ul li input.kana,
.form-area form ul li input.kana {
  max-width: 300px;
}
.top-form form ul li input.zip,
.form-area form ul li input.zip {
  width: 30.7692307692%;
  margin-right: 3.0769230769%;
}
.top-form form ul li input.addr,
.form-area form ul li input.addr {
  width: 66.1538461538%;
}
.top-form form ul li input.tel,
.form-area form ul li input.tel {
  max-width: 360px;
}
.top-form form ul li label,
.form-area form ul li label {
  display: block;
  background: none;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  margin: 0 10px;
  color: #fff;
  cursor: pointer;
  line-height: 1.6;
  position: relative;
}
.top-form form ul li label.checked,
.form-area form ul li label.checked {
  background: #fff;
  color: #192133;
}
.top-form form ul li label:first-of-type:not(.try-radio),
.form-area form ul li label:first-of-type:not(.try-radio) {
  background: none;
  border: none;
  color: #fff;
  padding: 0;
  margin-right: 20px;
  font-weight: bold;
}
.top-form form ul li label.try-radio,
.form-area form ul li label.try-radio {
  text-align: center;
}
.top-form form ul li label input,
.form-area form ul li label input {
  opacity: 0;
  position: absolute;
}
.top-form form div.date,
.form-area form div.date {
  margin: 0 0 40px;
}
.top-form form div.date ul,
.form-area form div.date ul {
  display: flex;
  margin: 0 auto 30px;
}
.top-form form div.date ul li,
.form-area form div.date ul li {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.top-form form div.date ul li span,
.form-area form div.date ul li span {
  display: block;
  padding: 14px;
  color: #fff;
}
.top-form form div.date ul li select,
.form-area form div.date ul li select {
  padding: 0 20px;
  border-radius: 5px;
}
.top-form form div.date p,
.form-area form div.date p {
  margin: 0 0 20px;
}
.top-form form div.date p.caution,
.form-area form div.date p.caution {
  max-width: 920px;
  margin: 0 auto 20px;
  padding: 10px;
  color: #fff;
}
.top-form form div.date p.caution.-red,
.form-area form div.date p.caution.-red {
  background: #f00;
}
.top-form form div.date .scroll,
.form-area form div.date .scroll {
  max-width: 920px;
  margin: 0 auto;
  overflow: auto;
}
.top-form form div.date .scroll table,
.form-area form div.date .scroll table {
  margin: 0 auto;
  background: #fff;
  border-top: 1px solid #444;
  border-left: 1px solid #444;
}
.top-form form div.date .scroll table tr th,
.form-area form div.date .scroll table tr th {
  background: #727171;
  text-align: center;
  padding: 10px;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
  border-top: none;
  border-left: none;
  color: #fff;
}
.top-form form div.date .scroll table tr th.color_orange1,
.form-area form div.date .scroll table tr th.color_orange1 {
  background: #F0831F;
}
.top-form form div.date .scroll table tr th.color_orange2,
.form-area form div.date .scroll table tr th.color_orange2 {
  background: #EA5406;
}
.top-form form div.date .scroll table tr td,
.form-area form div.date .scroll table tr td {
  text-align: center;
  padding: 10px;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
  border-top: none;
  border-left: none;
}
.top-form form div.date .scroll table tr td input,
.form-area form div.date .scroll table tr td input {
  display: block;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  background: #fff;
}
.top-form form div.date .scroll table tr td input:hover,
.form-area form div.date .scroll table tr td input:hover {
  background: #ccc;
}
.top-form form div.date .scroll table tr td input.ore-entry,
.form-area form div.date .scroll table tr td input.ore-entry {
  color: #fff;
  background: #f08021;
}
.top-form form div.date .scroll table tr td input.ore-entry:hover,
.form-area form div.date .scroll table tr td input.ore-entry:hover {
  color: #333;
  background: #ccc;
}
.top-form form div.caution p span,
.form-area form div.caution p span {
  font-size: 1rem;
}
.top-form form div.caution ul li,
.form-area form div.caution ul li {
  display: block;
  margin: 0;
  list-style: disc;
  color: #fff;
  line-height: 1.75;
}
.top-form form div.caution ul li a,
.form-area form div.caution ul li a {
  display: inline;
  background: none;
  color: #fff;
  padding: 0;
  margin: 0;
  font-weight: normal;
}
.top-form form input[type=submit],
.form-area form input[type=submit] {
  margin: 0 auto;
  padding: 15px 0;
  background: #ee8100;
  border: 0px;
  color: #192133;
  font-weight: bold;
  font-style: italic;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
}
.top-form form input[type=submit]:hover,
.form-area form input[type=submit]:hover {
  color: #ee8100;
  background: #192133;
}
.top-form form input[type=submit].white,
.form-area form input[type=submit].white {
  background: #fff;
}
.top-form form input[type=submit].white:hover,
.form-area form input[type=submit].white:hover {
  color: #ee8100;
  background: #192133;
}
.top-form form div a,
.form-area form div a {
  display: inline-block;
  padding: 16px 20px;
  margin: 0 10px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  background: #ee8100;
}
.top-form form div a:hover,
.form-area form div a:hover {
  text-decoration: none;
  background: #192133;
  color: #ee8100;
}

.thanks header,
.view header {
  height: auto;
}
.thanks article,
.view article {
  padding: 0 0 60px;
  max-width: 800px !important;
}
.thanks article section#thanks,
.thanks article section#error,
.thanks article section#conf,
.thanks article section#view,
.view article section#thanks,
.view article section#error,
.view article section#conf,
.view article section#view {
  padding: 0;
  margin: 0 0 60px;
}
.thanks article section#thanks h2,
.thanks article section#error h2,
.thanks article section#conf h2,
.thanks article section#view h2,
.view article section#thanks h2,
.view article section#error h2,
.view article section#conf h2,
.view article section#view h2 {
  padding: 20px;
  margin: 0 0 60px;
  position: static;
}
.thanks article section#thanks p,
.thanks article section#error p,
.thanks article section#conf p,
.thanks article section#view p,
.view article section#thanks p,
.view article section#error p,
.view article section#conf p,
.view article section#view p {
  margin: 0 0 40px;
  line-height: 2.3;
}
.thanks article section#thanks p span,
.thanks article section#error p span,
.thanks article section#conf p span,
.thanks article section#view p span,
.view article section#thanks p span,
.view article section#error p span,
.view article section#conf p span,
.view article section#view p span {
  font-size: 85.7142857143%;
}
.thanks article section#thanks ul,
.thanks article section#error ul,
.thanks article section#conf ul,
.thanks article section#view ul,
.view article section#thanks ul,
.view article section#error ul,
.view article section#conf ul,
.view article section#view ul {
  margin: 0 0 40px;
}
.thanks article section#thanks ul li,
.thanks article section#error ul li,
.thanks article section#conf ul li,
.thanks article section#view ul li,
.view article section#thanks ul li,
.view article section#error ul li,
.view article section#conf ul li,
.view article section#view ul li {
  margin-bottom: 1em;
  font-size: 142.8571428571%;
}
.thanks article section#thanks ul li i,
.thanks article section#error ul li i,
.thanks article section#conf ul li i,
.thanks article section#view ul li i,
.view article section#thanks ul li i,
.view article section#error ul li i,
.view article section#conf ul li i,
.view article section#view ul li i {
  color: #f00;
}
.thanks article section#thanks dl dt,
.thanks article section#error dl dt,
.thanks article section#conf dl dt,
.thanks article section#view dl dt,
.view article section#thanks dl dt,
.view article section#error dl dt,
.view article section#conf dl dt,
.view article section#view dl dt {
  margin: 0 0 0.5em;
  font-weight: bold;
  color: #ee8100;
}
.thanks article section#thanks dl dd,
.thanks article section#error dl dd,
.thanks article section#conf dl dd,
.thanks article section#view dl dd,
.view article section#thanks dl dd,
.view article section#error dl dd,
.view article section#conf dl dd,
.view article section#view dl dd {
  margin: 0 0 1em;
  font-size: 164.2857142857%;
}
.thanks article section#thanks a,
.thanks article section#error a,
.thanks article section#conf a,
.thanks article section#view a,
.view article section#thanks a,
.view article section#error a,
.view article section#conf a,
.view article section#view a {
  display: inline-block;
  padding: 16px 100px;
  background: #ee8100;
  border: 0px;
  font-size: 114.2857142857%;
  font-weight: bold;
  color: #192133;
  font-style: italic;
}
.thanks article section#thanks a:hover,
.thanks article section#error a:hover,
.thanks article section#conf a:hover,
.thanks article section#view a:hover,
.view article section#thanks a:hover,
.view article section#error a:hover,
.view article section#conf a:hover,
.view article section#view a:hover {
  color: #ee8100;
  background: #192133;
  text-decoration: none;
}
.thanks article section#thanks input[type=submit],
.thanks article section#error input[type=submit],
.thanks article section#conf input[type=submit],
.thanks article section#view input[type=submit],
.view article section#thanks input[type=submit],
.view article section#error input[type=submit],
.view article section#conf input[type=submit],
.view article section#view input[type=submit] {
  padding: 16px 0;
  background: #ee8100;
  border: 0px;
  color: #192133;
  font-size: 114.2857142857%;
  font-weight: bold;
  font-style: italic;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
}
.thanks article section#thanks input[type=submit]:hover,
.thanks article section#error input[type=submit]:hover,
.thanks article section#conf input[type=submit]:hover,
.thanks article section#view input[type=submit]:hover,
.view article section#thanks input[type=submit]:hover,
.view article section#error input[type=submit]:hover,
.view article section#conf input[type=submit]:hover,
.view article section#view input[type=submit]:hover {
  color: #ee8100;
  background: #192133;
}
.thanks article section#thanks > div,
.thanks article section#error > div,
.thanks article section#conf > div,
.thanks article section#view > div,
.view article section#thanks > div,
.view article section#error > div,
.view article section#conf > div,
.view article section#view > div {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0px;
  text-align: center;
  border: 2px solid #f08021;
  background: #fff;
}
.thanks article section#thanks > div h3,
.thanks article section#error > div h3,
.thanks article section#conf > div h3,
.thanks article section#view > div h3,
.view article section#thanks > div h3,
.view article section#error > div h3,
.view article section#conf > div h3,
.view article section#view > div h3 {
  padding: 10px;
  margin: 0;
  color: #fff;
  background: #f08021;
  font-size: 100%;
}
.thanks article section#thanks > div p,
.thanks article section#error > div p,
.thanks article section#conf > div p,
.thanks article section#view > div p,
.view article section#thanks > div p,
.view article section#error > div p,
.view article section#conf > div p,
.view article section#view > div p {
  padding: 10px;
  color: #192133;
  font-size: 114.2857142857%;
}
.thanks article section#view ul,
.view article section#view ul {
  max-width: 560px;
  margin: 0 auto 40px;
}
.thanks article section#view ul li a,
.view article section#view ul li a {
  display: block;
  padding: 30px 20px;
  border-radius: 5px;
}
.thanks article section#view > a,
.view article section#view > a {
  background: none;
  padding: 0;
}

.contact {
  /*font-size:14px;*/
}
.contact .wrap {
  /*background: url(img/contact-bg.gif) no-repeat center top;
  background-size:cover;*/
}
.contact .inner {
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .contact .inner {
    width: 100%;
  }
}
.contact h3 {
  text-align: center;
}
.contact form {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  padding: 30px;
}
.contact form > table {
  width: 100%;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #fff;
}
.contact form > table tr > th {
  padding: 20px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
  font-size: 114.2857142857%;
  width: 17.5438596491%;
}
.contact form > table tr > td {
  padding: 20px;
  text-align: left;
  color: #fff;
  font-weight: bold;
  width: 85.701754386%;
}
.contact form > table tr > td input {
  display: inline-block;
  margin: 0 20px 0 0;
}
.contact form > table tr > td input#name {
  max-width: 342px;
  width: 38.4269662921%;
}
.contact form > table tr > td input#kana {
  max-width: 342px;
  width: 38.4269662921%;
}
.contact form > table tr > td input#zip {
  max-width: 194px;
  width: 21.797752809%;
}
.contact form > table tr > td input#add {
  max-width: 605px;
  width: 56.1797752809%;
}
.contact form > table tr > td input#tel {
  max-width: 256px;
  width: 28.7640449438%;
}
.contact form > table tr > td input#email {
  max-width: 543px;
  width: 61.0112359551%;
}
.contact form > table tr > td input#date {
  max-width: 360px;
}
.contact form > table tr > td input#time {
  max-width: 160px;
}
@media (max-width: 767px) {
  .contact form > table tr > td input#time {
    max-width: 200px !important;
    width: 200px !important;
  }
}
.contact form > table tr > td input[type=button] {
  color: #000;
  font-size: 10.5px;
  font-weight: normal;
}
.contact form > table tr > td input[type=button][disabled] {
  color: #ddd;
}
.contact form > table tr > td select {
  text-align: center;
}
.contact form > table tr > td select#day, .contact form > table tr > td select#month {
  max-width: 5em;
  margin: 0 6px 0 0;
}
.contact form > table tr > td span {
  display: inline-block;
  margin: 0 6px 0 0;
}
.contact form > table tr > td p {
  color: #fff;
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.5;
}
.contact form > table tr > td p span {
  display: none;
}
.contact form > table tr > td p small {
  font-size: 81.25%;
}
.contact form > table tr > td dl dt {
  margin: 0 0 16px;
  font-weight: bold;
  font-size: 81.25%;
}
.contact form > table tr > td dl dd {
  margin: 0 0 20px;
  padding: 10px;
  background: #e87310;
  border-radius: 3px;
  font-size: 143.75%;
  font-weight: bold;
}
.contact form > table tr > td dl dd:last-child {
  margin-bottom: 0;
}
.contact form > table .gender_label {
  display: inline-block;
  margin-right: 20px;
}
.contact form > table .radio label {
  display: inline-block;
  vertical-align: middle;
  background: none;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  margin-right: 10px;
  color: #fff;
  cursor: pointer;
  line-height: 1.6;
  position: relative;
}
.contact form > table .radio label.checked {
  background: #fff;
  color: #192133;
}
.contact form > table .radio label input {
  opacity: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .contact form > table .grade label {
    display: block;
  }
  .contact form > table .grade label:nth-child(2) {
    margin-top: 10px;
  }
}
.contact form > table table {
  background: #fff;
  border-top: 1px solid #444;
  border-left: 1px solid #444;
  width: 100%;
}
.contact form > table table tr th {
  background: #727171;
  text-align: center;
  padding: 10px;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
}
.contact form > table table tr th.color_orange1 {
  background: #F0831F;
}
.contact form > table table tr th.color_orange2 {
  background: #EA5406;
}
.contact form > table table tr td {
  text-align: center;
  padding: 10px;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
}
.contact form > table table tr td input {
  display: block;
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  background: #fff;
}
.contact form > table table tr td input:hover {
  background: #ccc;
}
.contact form h3 {
  margin: 0 0 16px;
  font-weight: bold;
  color: #fff;
}
.contact form ul {
  border: 1px solid #fff;
  padding: 30px;
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: left;
}
.contact form ul li {
  list-style: disc;
  line-height: 2.3;
  font-size: 85.7142857143%;
  color: #fff;
}
.contact form ul li a {
  text-decoration: underline;
  color: #fff;
}
.contact form input[type=submit] {
  background: #FF0000;
  padding: 20px 60px;
  color: #fff;
  font-weight: bold;
  font-size: 142.8571428571%;
  border: 0px;
  cursor: pointer;
}
.contact form input[type=submit]:after {
  font-family: Fontawesome;
  content: "";
  font-size: 164.2857142857%;
  border-left: 1px solid #fff;
  margin: 0 0 0 20px;
  padding: 0 0 0 20px;
}
.contact form > div p {
  margin: 0 0 30px;
  font-size: 128.5714285714%;
  color: #fff;
  font-weight: bold;
}
.contact form > div a {
  display: inline-block;
  padding: 16px 20px;
  margin: 0 10px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 114.2857142857%;
  background: #ee8100;
  text-decoration: none;
}
.contact form > div a:hover {
  text-decoration: none;
  background: #192133;
  color: #ee8100;
}
.contact + a {
  display: block;
  max-width: 720px;
  margin: 0 auto 30px;
}
.contact + a + a {
  display: block;
  max-width: 720px;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .contact form {
    width: 100%;
    padding: 10px;
  }
  .contact form > table {
    width: 100%;
  }
  .contact form > table tr > th {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  .contact form > table tr > td {
    display: block;
    padding: 10px;
    width: 100%;
  }
  .contact form > table tr > td input {
    display: block;
    margin: 0 0 10px;
  }
  .contact form > table tr > td input#name {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
  .contact form > table tr > td input#kana {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
  .contact form > table tr > td input#zip {
    max-width: 180px;
    width: 100%;
  }
  .contact form > table tr > td input#add {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
  .contact form > table tr > td input#tel {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
  .contact form > table tr > td input#email {
    max-width: none;
    max-width: initial;
    width: 100%;
  }
  .contact form > table tr > td input#time {
    display: inline-block;
    max-width: 100px;
  }
  .contact form > table tr > td p span {
    display: inline;
  }
  .contact form > table .scroll {
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    max-width: 300px;
  }
  .contact form > table .scroll:-webkit-scrollbar {
    height: 5px;
  }
  .contact form > table .scroll:-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .contact form > table .scroll:-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .contact form > table .scroll > table {
    width: 100%;
  }
  .contact form > table .scroll > table tr th {
    display: table-cell;
  }
  .contact form > table .scroll > table tr td {
    display: table-cell;
  }
  .contact form > table .scroll > table tr td input {
    padding: 6px;
  }
  .contact form input[type=submit] {
    display: block;
    width: 100%;
    padding: 20px 10;
  }
  .contact form input[type=text],
.contact form input[type=email],
.contact form input[type=tel] {
    font-size: 16px;
  }
  .contact form > div a {
    display: block;
    margin: 0 0 20px;
  }
}

/*===============================================================
	ENTRY
===============================================================*/
.entry {
  /*header {
  	p {
  		background: #fff;
  		padding: 10px 10px 16px;
  		width: 100%;
  		position: relative;
  		z-index: 999;
  	}
  	h1 {
  		background: url(../../images/recruit/main-bg.jpg) no-repeat top center;
  		background-size: cover;
  		padding: 60px 10px;
  		color: #ee8100;
  		font-family: 'Roboto', sans-serif;
  		z-index: 999;
  		font-size: percentage(30px / 14px);
  		letter-spacing: .5em;
  		line-height: 1.5;
  		font-style: italic;
  		text-align: center;
  		height: 100%;
  		span {
  			display: block;
  			letter-spacing: normal;
  			font-size: percentage(14px / 30px);
  		}
  	}
  }*/
}
.entry article {
  max-width: 1020px !important;
  margin: 0 auto;
  padding: 50px 10px 0;
  text-align: justify;
}
.entry article > section {
  margin: 0 0 80px;
}
.entry article > section h2 {
  padding: 4px 0 4px 10px;
  margin: 0 0 30px;
  border-left: 5px solid #192133;
  color: #192133;
  font-size: 192.8571428571%;
  text-align: left !important;
}
.entry article > section h2 strong {
  color: #ee8100;
}
.entry article > section h2 span {
  display: inline-block;
  padding: 10px 14px;
  background: #192133;
  color: #fff;
  font-size: 55.5555555556%;
  font-weight: bold;
  vertical-align: 0.5em;
  border-radius: 3px;
}
.entry article > section form table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 92.8571428571%;
}
.entry article > section form table tr th {
  padding: 26px 20px;
  width: 20%;
  background: #e3e3e3;
  color: #192133;
  font-weight: bold;
  vertical-align: middle;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-top: none;
  border-left: none;
}
.entry article > section form table tr td {
  padding: 26px 20px;
  line-height: 1.75;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-top: none;
  border-left: none;
}
.entry article > section form table tr td input#name {
  max-width: 230px;
}
.entry article > section form table tr td input#kana {
  max-width: 300px;
}
.entry article > section form table tr td input#tel {
  max-width: 340px;
}
.entry article > section form table tr td input#email {
  max-width: 500px;
}
.entry article > section form table tr td input#zip {
  display: inline-block;
  max-width: 150px;
}
.entry article > section form table tr td input#year, .entry article > section form table tr td input#month, .entry article > section form table tr td input#day {
  display: inline-block;
  max-width: 100px;
}
.entry article > section form table tr td input.error {
  background: #FFD5D4;
}
.entry article > section form table tr td p.error {
  background: #f00;
  color: #fff;
  padding: 6px;
  margin: 6px 0 0;
  font-size: 85.7142857143%;
  font-weight: bold;
}
.entry article > section form table tr td label {
  display: inline-block;
  margin: 0 10px 0 0;
  cursor: pointer;
}
.entry article > section form table tr td ul li {
  margin: 0 0 20px;
}
.entry article > section form table tr td ul li:last-child {
  margin: 0;
}
.entry article > section form table + p {
  padding: 16px 0 0;
  margin: 0 0 60px;
  text-align: right;
}
.entry article > section form table + p a {
  text-decoration: underline;
}
.entry article > section form table + p a:hover {
  text-decoration: none;
}
.entry article > section form section > p:first-of-type {
  margin: 0 0 40px;
}
.entry article > section form section h3 {
  padding: 10px;
  margin: 0 0 20px;
  background: #192133;
  color: #fff;
  font-size: 128.5714285714%;
  font-weight: bold;
}
.entry article > section form section div {
  height: 260px;
  overflow: auto;
  padding: 20px;
  border: 1px solid #e3e3e3;
  font-size: 85.7142857143%;
  line-height: 1.75;
}
.entry article > section form section div + p {
  padding: 16px 0 0;
  margin: 0 0 30px;
  text-align: right;
}
.entry article > section form section div + p a {
  text-decoration: underline;
}
.entry article > section form section div + p a:hover {
  text-decoration: none;
}
.entry article > section form section div h4 {
  margin: 1.5em 0 0;
  font-size: 116.6666666667%;
  border-bottom: 1px solid #e7e7e7;
}
.entry article > section form section div h4:first-of-type {
  margin: 0 0 1em;
}
.entry article > section form section div h5 {
  margin: 1em 0 0.5em;
  font-weight: bold;
}
.entry article > section form section div h5:first-of-type {
  margin-top: 0;
}
.entry article > section form section + div {
  padding: 2px;
  margin: 0 0 60px;
  background: #f3f3f3;
  text-align: center;
  border: 1px solid #e3e3e3;
}
.entry article > section form section + div label {
  display: block;
  padding: 16px;
  background: #fff;
  cursor: pointer;
  font-size: 114.2857142857%;
}
.entry article > section form > input {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #ee8100;
  border: 0px;
  padding: 16px;
  font-weight: bold;
  color: #fff;
  font-size: 114.2857142857%;
  cursor: pointer;
  -webkit-appearance: none;
}
.entry article > section form > input:hover {
  opacity: 0.6;
}
.entry article section.thanks h3 {
  margin: 0 0 20px;
  font-size: 114.2857142857%;
}
.entry article section.thanks p {
  line-height: 1.75;
}
.entry article section.thanks p span {
  font-size: 85.7142857143%;
}
.entry article section.thanks a {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 40px 0 0;
  background: #ee8100;
  border: 0px;
  padding: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

/*
#contact,
#catalog {
	.intro-area {
		padding-top: 0 !important;
		p {
			text-align: center;
		}
	}

	.form-area {
		margin-bottom: 4.0em;
		.wrap {
			margin-left: auto;
			margin-right: auto;
			max-width: 900px;
			dl {
				margin-left: auto;
				margin-right: auto;
				max-width: 900px;
				display: flex;
				justify-content: space-between;
				flex-wrap: wrap;
				&:nth-child(n + 3) {
					margin-top: 1px !important;
				}
				&:nth-child(2n + 1) {
					dt {
						background: #fafafa;
					}
					dd {
						background: #fff;
					}
				}
				dt {
					padding: 1.0em;
					font-size: 1.6rem;
					background: #fafafa;
					border-bottom: 1px solid #ddd;
					display: flex;
					align-items: center;
					width: 30%;
					position: relative;
					.required-mark {
						margin-left: 1.0em;
						padding: 0.3em 0.5em;
						color: #FFF;
						font-size: 1.1rem;
						text-align: center;
						line-height: 1.2;
						background: #BE1515;
						border-radius: 0.3em;
						min-width: 35px;
						position: absolute;
						right: 15px;
						top: calc(50% - 0.8em);
					}
					&.required {
						padding: 1.0em 3.0em 1.0em 1.0em;
					}
				}
				dd {
					padding: 1.0em;
					background: #fff;
					border-bottom: 1px solid #ddd;
					display: flex;
					flex-wrap: wrap;
					align-items: center;
					width: 70%;
					.txt-atn {
						margin-top: 1.0em !important;
						font-size: 1.3rem;
						width: 100%;
					}
					.txt-atn-red {
						margin-top: 1.0em !important;
						color: #FF0000;
						font-size: 1.3rem;
						width: 100%;
					}
				}

				.w50 {
					width: 50% !important;
				}
				.horizontal-item {
					margin-left: 0 !important;
					margin-right: 10px !important;
				}
				.error {
					margin-top: 0.5em !important;
					color: #B70000 !important;
					font-size: 1.6rem !important;
					font-weight: bold !important;
					display: block !important;
					width: 100% !important;
				}
			}
		}
		input[type="text"],
		input[type="email"],
		input[type="url"],
		input[type="tel"],
		input[type="number"],
		textarea {
			padding: 15px;
			background: #fff;
			border: 1px solid #ccc;
			border-radius: 4px;
			width: 100%;
			max-width: 100%;
		}
		select {
			padding: 10px;
			background: #fff;
			border: 1px solid #ccc;
			border-radius: 4px;
		}
		textarea {
			width: 100%;
		}
		input[type="radio"],
		input[type="checkbox"] {
			margin: 10px 0 10px 10px;
		}
		label {
			&:hover {
				cursor: pointer !important;
			}
		}
	}

	.privacy-box {
		margin-top: 3.0em;
		padding: 1.0em;
		border: 1px solid #ccc;
		max-height: 300px;
		overflow-y: scroll;
	}

	.submit {
		text-align: center;
		input {
			padding: 1.2em;
			color: #FFF;
			font-size: 1.6rem;
			background: #000;
			border: 1px solid #000;
			min-width: 250px;
			cursor: pointer;
			&:hover {
				background: #a87b50;
				border: 1px solid #a87b50;
				opacity: 0.8;
			}
			&.dis {

			}
		}
	}
	.submit-back {
		text-align: center;
		input {
			padding: 1.2em;
			color: #000;
			font-size: 1.6rem;
			background: #fff;
			border: 1px solid #000;
			min-width: 250px;
			cursor: pointer;
			&:hover {
				color: #a87b50;
				border: 1px solid #a87b50;
				opacity: 0.8;
			}
		}
	}
	.thanks-area {
		margin-left: auto;
		margin-right: auto;
		max-width: 800px;
		text-align: center;
	}

}
*/