@charset "UTF-8";
/* common
----------------------------------*/
.img {
  width: 100%;
}

a {
  display: block;
}

.tab {
  display: none !important;
}

.sp {
  display: none !important;
}

.sp_ib {
  display: none !important;
}

.sp_min {
  display: none !important;
}

.inner {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 100%;
    margin: 0;
  }
}

table {
  width: 100%;
  table-layout: fixed;
}

td,
th {
  font-weight: normal;
  text-align: left;
}

.noLink a,
.noLink a:hover,
.noLink a img,
.noLink a:hover img {
  opacity: 0.6 !important;
  cursor: inherit;
}

.text_wh {
  color: #fff !important;
}

@media screen and (max-width: 1000px) {
  .tab {
    display: block !important;
  }
  .tab_non {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_ib {
    display: inline-block !important;
  }
  .inner {
    max-width: 100%;
    min-height: 0;
    padding: 0 20px;
  }
}
.hvUnderbar a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #237bd0 calc(100% - 1px), #237bd0 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: 0.3s all;
}

.hvUnderbarBk a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #231815 calc(100% - 1px), #231815 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: 0.3s all;
}

.hvUnderbar a:hover,
.hvUnderbarBk a:hover {
  text-decoration: none;
  background-size: 100% 100%;
}

.hvUnderbarRev a {
  display: inline;
  line-height: 1.6;
  background: linear-gradient(transparent calc(100% - 1px), #237bd0 calc(100% - 1px), #237bd0 100%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all;
  background-position: 50%;
}

.hvUnderbarRev a:hover {
  text-decoration: none;
  background-size: 0% 100%;
}

@media screen and (max-width: 374px) {
  .sp_min {
    display: block;
  }
}
.upIn,
.load_upIn,
.pa_upIn {
  opacity: 0;
}
.upIn.onAnim,
.load_upIn.onAnim,
.pa_upIn.onAnim {
  -webkit-animation: upin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) both;
          animation: upin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) both;
}

.rhIn,
.load_rhIn {
  opacity: 0;
}
.rhIn.onAnim,
.load_rhIn.onAnim {
  -webkit-animation: rhin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
          animation: rhin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
}

.lhIn,
.load_lhIn {
  opacity: 0;
}
.lhIn.onAnim,
.load_lhIn.onAnim {
  -webkit-animation: lhin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
          animation: lhin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
}

.smallIn,
.load_smallIn {
  transform: scale(1.05);
  transform-origin: top center;
}
.smallIn.onAnim,
.load_smallIn.onAnim {
  -webkit-animation: smallin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
          animation: smallin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
}

.popIn,
.load_popIn,
.pa_popIn {
  transform: scale(0.9);
  transform-origin: center center;
  opacity: 0;
}
.popIn.onAnim,
.load_popIn.onAnim,
.pa_popIn.onAnim {
  -webkit-animation: popin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) both;
          animation: popin 0.4s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) both;
}

@-webkit-keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes smallin {
  0% {
    transform: scale(1.05);
  }
  100%, to {
    transform: scale(1);
  }
}
@keyframes smallin {
  0% {
    transform: scale(1.05);
  }
  100%, to {
    transform: scale(1);
  }
}
@-webkit-keyframes popin {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popin {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
.D01 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.D02 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.D03 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.D04 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.D05 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.D06 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.D07 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

.D08 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.D09 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.D10 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
  transition-delay: 1s !important;
}

.D11 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

.D12 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.D13 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.D14 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.D15 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.D16 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.D17 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.D18 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.D19 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.D20 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
  transition-delay: 2s !important;
}

.D21 {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}

.D22 {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}

.D23 {
  -webkit-animation-delay: 2.3s !important;
          animation-delay: 2.3s !important;
  transition-delay: 2.3s !important;
}

.D24 {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
  transition-delay: 2.4s !important;
}

.D25 {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
  transition-delay: 2.5s !important;
}

.D26 {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
  transition-delay: 2.6s !important;
}

.D27 {
  -webkit-animation-delay: 2.7s !important;
          animation-delay: 2.7s !important;
  transition-delay: 2.7s !important;
}

.D28 {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
  transition-delay: 2.8s !important;
}

.D29 {
  -webkit-animation-delay: 2.9s !important;
          animation-delay: 2.9s !important;
  transition-delay: 2.9s !important;
}

.D30 {
  -webkit-animation-delay: 3s !important;
          animation-delay: 3s !important;
  transition-delay: 3s !important;
}

body.loaded {
  position: relative;
}
body.loaded.open {
  position: fixed;
  z-index: 1;
}

/* ---------------------------
	parts
--------------------------- */
.btnOrbal a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ed7414;
  color: #fff;
  height: 54px;
  border: 1px solid #ed7414;
  transition: 0.3s background;
  position: relative;
  font-weight: 700;
  border-radius: 50px;
  margin: 0 auto;
}
.btnOrbal a:hover {
  background: #fff;
  color: #ed7414;
}
.btnOrbal.arr a::after {
  content: "";
  width: 10px;
  height: 9px;
  background: url(/img/common/arr_btn.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  z-index: 10;
}
.btnOrbal.arr a:hover::after {
  background-image: url(/img/common/arr_btn_org.svg);
}

@media screen and (max-width: 767px) {
  .btnOrbal a {
    height: 52px;
    font-size: 1.6rem;
  }
  .btnOrbal.arr a::after {
    content: "";
    width: 15px;
    height: 14px;
  }
}
/* ---------------------------
	Loader
--------------------------- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

.loaderOut {
  opacity: 1;
  transform: translateX(-50vw);
}

.loaded .loaderOut {
  -webkit-animation: slideIn 0.5s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
          animation: slideIn 0.5s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
}

.active.loaded .loaderOut {
  opacity: 0;
  -webkit-animation: slideOut 0.5s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
          animation: slideOut 0.5s 1 cubic-bezier(0.17, 0.67, 0.37, 0.95) forwards;
}

@-webkit-keyframes slideIn {
  0% {
    opacity: 1;
    transform: translateX(-50vw);
  }
  100%, to {
    opacity: 0;
    transform: translateX(200vw);
  }
}

@keyframes slideIn {
  0% {
    opacity: 1;
    transform: translateX(-50vw);
  }
  100%, to {
    opacity: 0;
    transform: translateX(200vw);
  }
}
@-webkit-keyframes slideOut {
  0% {
    opacity: 0;
    transform: translateX(-200vw);
  }
  100%, to {
    opacity: 1;
    transform: translateX(-50vw);
  }
}
@keyframes slideOut {
  0% {
    opacity: 0;
    transform: translateX(-200vw);
  }
  100%, to {
    opacity: 1;
    transform: translateX(-50vw);
  }
}
/* ---------------------------
	Header
--------------------------- */
header {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  height: 75px;
  padding: 0 min(1.9230769231vw, 20px) 0 min(3.8461538462vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  width: min(18.1730769231vw, 189px);
}
header h1 a {
  transition: 0.3s all;
}
header h1 a:hover {
  opacity: 0.7;
}
header div.link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(20.1923076923vw, 210px);
}
header div.link .insta a {
  transition: 0.3s all;
}
header div.link .insta a:hover {
  opacity: 0.7;
}
header div.link .insta a img {
  width: auto;
  height: min(4.0384615385vw, 42px);
}
header div.link .inq a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(14.9038461538vw, 155px);
  height: min(3.8461538462vw, 40px);
  font-size: min(1.3461538462vw, 14px);
  background: #ed7414;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid #ed7414;
}
header div.link .inq a:hover {
  background: #fff;
  color: #ed7414;
}
header div.globalMenu {
  margin: 0 min(1.9230769231vw, 20px) 0 auto;
}
header div.globalMenu ul {
  display: flex;
  align-items: center;
  gap: min(3.8461538462vw, 40px);
}
header div.globalMenu ul li a p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "bahnschrift", sans-serif;
  font-size: min(1.4423076923vw, 15px);
  padding-top: 1.5em;
  line-height: 1.3;
}
header div.globalMenu ul li a p span {
  font-size: min(1.0576923077vw, 11px);
  font-weight: 700;
  transition: 0.3s all;
  opacity: 0;
  color: #237bd0;
}
header div.globalMenu ul li a p::after {
  content: "";
  width: 100%;
  height: 5px;
  background: #237bd0;
  margin-top: 0.2em;
  transition: 0.3s all;
  opacity: 0;
}
header div.globalMenu ul li a:hover {
  color: #237bd0;
}
header div.globalMenu ul li a:hover p span {
  opacity: 1;
}
header div.globalMenu ul li a:hover p::after {
  opacity: 1;
}

.trigger {
  display: none;
}

.menuBox {
  display: none;
}

#contFixWrap {
  padding-top: 75px;
}

@media screen and (max-width: 767px) {
  header {
    height: 60px;
    padding: 0 15px 0;
  }
  header h1 {
    width: 140px;
  }
  header div.link {
    display: none;
  }
  header div.globalMenu {
    display: none;
  }
  .trigger {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2100;
    display: block;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
  }
  .trigger span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #237bd0;
    top: calc(50% - 1px);
    left: 8px;
    z-index: 110;
    transition: 0.3s all;
  }
  .trigger span:first-of-type {
    width: 22px;
    top: calc(50% - 1px - 6px);
  }
  .trigger span:last-of-type {
    width: 7px;
    top: calc(50% - 1px + 6px);
  }
  .trigger.open span {
    width: 0;
    left: 50%;
  }
  .trigger.open span:first-of-type {
    width: 10px;
    top: calc(50% - 1px);
    left: calc(50% - 5px);
    transform: rotate(45deg);
  }
  .trigger.open span:last-of-type {
    width: 10px;
    top: calc(50% - 1px);
    left: calc(50% - 5px);
    transform: rotate(-45deg);
  }
  .menuBox {
    overflow: auto;
  }
  .menuBox .logo {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 2010;
    width: 140px;
  }
  .menuBox .menuInsta {
    position: fixed;
    top: 10px;
    right: 58px;
    z-index: 2100;
    width: 38px;
    height: 38px;
  }
  .menuBox .menuInner {
    margin-left: -100vw;
    transition: 0.3s all;
    padding: 80px 20px 30px;
    width: 100vw;
    box-sizing: border-box;
  }
  .menuBox .menuInner.open {
    margin-left: 0;
  }
  .menuBox.open {
    display: block;
    width: 100%;
    height: 100%;
    background: #237bd0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2050;
  }
  .menuBox div.spNav ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    justify-content: normal;
    gap: 20px 0;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }
  .menuBox div.spNav ul li {
    width: 50%;
  }
  .menuBox div.spNav ul a svg {
    width: auto;
    height: 35px;
  }
  .menuBox div.spNav ul a path, .menuBox div.spNav ul a rect, .menuBox div.spNav ul a polygon {
    fill: #fff;
    transition: 0.3s all;
  }
  .menuBox div.spNav ul a:hover path, .menuBox div.spNav ul a:hover rect, .menuBox div.spNav ul a:hover polygon {
    fill: #154a7d;
  }
  .menuBox .spBtnBox {
    display: flex;
    justify-content: space-between;
    margin: 35px 0 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
  }
  .menuBox .spBtnBox p {
    width: calc(50% - 5px);
  }
  .menuBox .spBtnBox p a {
    height: 52px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    background: #fff;
    color: #237bd0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
  }
  .menuBox .spBtnBox p.inq a {
    background: #ed7414;
    color: #fff;
  }
  .menuBox div.links {
    padding-top: 30px;
    width: 100%;
  }
  .menuBox div.links li ~ li {
    margin-top: 10px;
  }
  .menuBox div.links a {
    color: #fff;
    transition: 0.3s all;
  }
  .menuBox div.links a:hover {
    color: #154a7d;
  }
  .menuBox div.links a.newwin span {
    margin-left: 0.5em;
  }
  .menuBox div.links a.newwin span path, .menuBox div.links a.newwin span rect, .menuBox div.links a.newwin span polygon {
    transition: 0.3s all;
    fill: #fff;
  }
  .menuBox div.links a.newwin:hover span path, .menuBox div.links a.newwin:hover span rect, .menuBox div.links a.newwin:hover span polygon {
    fill: #154a7d;
  }
  #contFixWrap {
    padding-top: 60px;
  }
}
/* ---------------------------
	Footer
--------------------------- */
footer {
  background: url(/img/common/footer_path.svg) center 0 no-repeat;
  background-size: 100% 500px;
  width: 100%;
  color: #fff;
  padding: 45px 0 50px;
  margin-top: -78px;
  position: relative;
}
footer h2 {
  width: 240px;
  margin: 0 auto 0;
}
footer div.fNav {
  margin-top: 65px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
footer div.fNav ul {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
footer div.fNav ul a svg {
  width: 100%;
}
footer div.fNav ul a path, footer div.fNav ul a rect, footer div.fNav ul a polygon {
  fill: #fff;
  transition: 0.3s all;
}
footer div.fNav ul a:hover path, footer div.fNav ul a:hover rect, footer div.fNav ul a:hover polygon {
  fill: #154a7d;
}
footer div.btmBox {
  padding: 30px 0 0;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}
footer div.btmBox a {
  color: #fff;
  transition: 0.3s all;
}
footer div.btmBox a:hover {
  color: #154a7d;
}
footer div.btmBox a.newwin span {
  margin-left: 0.5em;
}
footer div.btmBox a.newwin span path, footer div.btmBox a.newwin span rect, footer div.btmBox a.newwin span polygon {
  transition: 0.3s all;
  fill: #fff;
}
footer div.btmBox a.newwin:hover span path, footer div.btmBox a.newwin:hover span rect, footer div.btmBox a.newwin:hover span polygon {
  fill: #154a7d;
}
footer div.btmBox div.links {
  width: calc(100% - 320px);
}
footer div.btmBox div.links ul {
  display: flex;
  margin-bottom: 5px;
}
footer div.btmBox div.links ul li ~ li {
  margin-left: 20px;
}
footer div.btmBox div.links address span {
  display: inline-block;
}
footer div.btmBox div.comInfo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 700;
  width: 290px;
}
footer div.btmBox div.comInfo .insta {
  width: 43px;
}
footer div.btmBox div.comInfo div.cpBox ul {
  display: flex;
  justify-content: flex-end;
  letter-spacing: 0.05em;
}
footer div.btmBox div.comInfo div.cpBox ul li ~ li {
  margin-left: 20px;
}
footer div.btmBox div.comInfo div.cpBox > p {
  font-size: 1rem;
  text-align: right;
  letter-spacing: 0.05em;
}
footer #pageTop {
  position: absolute;
  right: calc(540px - 50vw);
  bottom: 50px;
  z-index: 10;
}
footer #pageTop a path {
  fill: #fff;
  transition: 0.3s all;
}
footer #pageTop a:hover path {
  fill: #154a7d;
}
@media screen and (max-width: 1150px) {
  footer #pageTop {
    right: calc(575px - 50vw + 50px);
    bottom: auto;
    top: 10px;
  }
}
@media screen and (max-width: 1040px) {
  footer #pageTop {
    right: 80px;
  }
}

@media screen and (max-width: 767px) {
  #INQUIRE footer {
    padding-bottom: 35px;
  }
  footer {
    background: url(/img/common/footer_path_sp.svg) center 0 no-repeat;
    background-size: 100% 1000px;
    padding: 48px 0 95px;
    margin-top: -28px;
  }
  footer .inner {
    padding: 0 30px;
  }
  footer h2 {
    width: 200px;
  }
  footer div.fNav {
    margin-top: 35px;
    padding-top: 25px;
    padding-bottom: 30px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  footer div.fNav ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    justify-content: normal;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }
  footer div.fNav ul li {
    width: 50%;
  }
  footer div.fNav ul a svg {
    width: auto;
    height: 26px;
  }
  footer div.btmBox {
    padding: 0;
    font-size: 1.2rem;
    flex-direction: column;
  }
  footer div.btmBox a {
    color: #fff;
    transition: 0.3s all;
  }
  footer div.btmBox a:hover {
    color: #154a7d;
  }
  footer div.btmBox a.newwin span {
    margin-left: 0.5em;
  }
  footer div.btmBox a.newwin span path, footer div.btmBox a.newwin span rect, footer div.btmBox a.newwin span polygon {
    transition: 0.3s all;
    fill: #fff;
  }
  footer div.btmBox a.newwin:hover span path, footer div.btmBox a.newwin:hover span rect, footer div.btmBox a.newwin:hover span polygon {
    fill: #154a7d;
  }
  footer div.btmBox div.links {
    padding: 25px 0;
    border-bottom: 1px solid #fff;
    width: 100%;
    margin-bottom: 15px;
  }
  footer div.btmBox div.links ul {
    flex-direction: column;
    margin-bottom: 0;
  }
  footer div.btmBox div.links ul li {
    margin-bottom: 0.6em;
  }
  footer div.btmBox div.links ul li ~ li {
    margin-left: 0;
  }
  footer div.btmBox div.links address span {
    display: block;
  }
  footer div.btmBox div.comInfo {
    width: 100%;
    margin-top: 25px;
  }
  footer div.btmBox div.comInfo .insta {
    width: 54px;
  }
  footer div.btmBox div.comInfo div.cpBox ul {
    display: flex;
    justify-content: flex-end;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
  }
  footer div.btmBox div.comInfo div.cpBox ul li ~ li {
    margin-left: 20px;
  }
  footer div.btmBox div.comInfo div.cpBox > p {
    margin-top: 0.5em;
  }
  footer #pageTop {
    position: static;
    width: 88px;
    margin-left: auto;
  }
}
div.floatingBnr div.spBnrBox {
  display: none;
}
div.floatingBnr div.pcBnrBox > p {
  position: fixed;
  top: calc(45% - min(25vw, 260px) - 10px);
  right: -100px;
  z-index: 10;
  transition: 0.3s all;
}
div.floatingBnr div.pcBnrBox > p.active {
  right: -1px;
}
div.floatingBnr div.pcBnrBox > p a {
  background: #ed7414;
  border: 1px solid #ed7414;
  border-right: none;
  width: min(7.8846153846vw, 82px);
  height: min(25vw, 260px);
  border-radius: min(1.9230769231vw, 20px) 0 0 min(1.9230769231vw, 20px);
  display: flex;
  justify-content: center;
  align-items: center;
}
div.floatingBnr div.pcBnrBox > p a path, div.floatingBnr div.pcBnrBox > p a polygon, div.floatingBnr div.pcBnrBox > p a rect {
  fill: #fff;
}
@media screen and (min-width: 769px) {
  div.floatingBnr div.pcBnrBox > p a:hover {
    background: #fff;
  }
  div.floatingBnr div.pcBnrBox > p a:hover path, div.floatingBnr div.pcBnrBox > p a:hover polygon, div.floatingBnr div.pcBnrBox > p a:hover rect {
    fill: #ed7414;
  }
}
div.floatingBnr div.pcBnrBox > p svg {
  width: min(3.2692307692vw, 34px);
}
div.floatingBnr div.pcBnrBox > p.works {
  top: calc(45% + 10px);
}
div.floatingBnr div.pcBnrBox > p.works a {
  background: #154a7d;
  border-color: #154a7d;
  height: min(20.7692307692vw, 216px);
}
@media screen and (min-width: 769px) {
  div.floatingBnr div.pcBnrBox > p.works a:hover {
    background: #fff;
  }
  div.floatingBnr div.pcBnrBox > p.works a:hover path, div.floatingBnr div.pcBnrBox > p.works a:hover polygon, div.floatingBnr div.pcBnrBox > p.works a:hover rect {
    fill: #154a7d;
  }
}

@media screen and (max-width: 767px) {
  div.floatingBnr.active div.spBnrBox {
    bottom: 0;
  }
  div.floatingBnr.toDown div.spBnrBox {
    bottom: -100px;
  }
  div.floatingBnr div.spBnrBox {
    display: block;
    position: fixed;
    width: 100%;
    bottom: -100px;
    left: 0;
    z-index: 100;
    transition: 0.3s all;
  }
  div.floatingBnr div.spBnrBox > div {
    display: flex;
    justify-content: space-between;
  }
  div.floatingBnr div.spBnrBox > div > p {
    width: 50%;
  }
  div.floatingBnr div.spBnrBox > div > p a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed7414;
  }
  div.floatingBnr div.spBnrBox > div > p img {
    width: 187px;
  }
  div.floatingBnr div.spBnrBox > div > p.inq a {
    background: #237bd0;
  }
  div.floatingBnr div.pcBnrBox {
    display: none;
  }
}
#INQUIRE div.floatingBnr {
  display: none !important;
}

/* ---------------------------
	SUB common
--------------------------- */
div.breadList {
  padding: 20px 0 40px;
  letter-spacing: 0;
}
div.breadList ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
  font-size: min(1.3461538462vw, 14px);
  gap: 10px 0;
}
div.breadList ul li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #4d4d4d;
}
div.breadList ul li ~ li::before {
  content: "＞";
  margin: 0 0.3em;
}
div.breadList ul li a {
  color: #237bd0;
}
div.breadList.spList {
  display: none;
}

@media screen and (max-width: 767px) {
  div.breadList {
    display: none;
  }
  div.breadList.spList {
    padding: 40px 0 0;
    display: block;
  }
  div.breadList.spList ul {
    font-size: 13px;
  }
}
/*# sourceMappingURL=layout.css.map */